Thread::join
Synchronization
&reftitle.description;
public boolThread::join
Causes the calling context to wait for the referenced Thread to finish executing
&reftitle.parameters;
&no.function.parameters;
&reftitle.returnvalues;
&return.success;
&reftitle.examples;
Join with the referenced Thread
start();
/* ... */
var_dump($my->join());
/* ... */
?>
]]>
&example.outputs;