Thread::joinSynchronization Description
public boolean Thread::join
( void
)
Causes the calling context to wait for the referenced Thread to finish executing ParametersThis function has no parameters. Return ValuesA boolean indication of success Examples
Example #1 Join with the referenced Thread
<?php The above example will output: bool(true) |