pht\Thread::join

(PECL pht >= 0.0.1)

pht\Thread::joinJoins a thread

说锟斤拷

public pht\Thread::join ( void ) : void

This method will join the spawned thread (though it will first wait for that thread's internal task queue to finish). As a matter of good practice, threads should always be joined. Not joining a thread may lead to undefined behaviour.

锟斤拷锟斤拷

锟剿猴拷锟斤拷没锟叫诧拷锟斤拷锟斤拷

锟斤拷锟斤拷值

No return value.

锟斤拷锟斤拷

Example #1 Joining a thread

<?php

use pht\Thread;

$thread = new Thread();

$thread->start();
$thread->join();