Thread
PHP 手册

Thread::join

(PECL pthreads >= 0.34)

Thread::joinSynchronization

说明

final public boolean Thread::join ( void )

Causes the calling context to wait for the referenced Thread to finish executing

参数

此函数没有参数。

返回值

A boolean indication of success

范例

Example #1 Join with the referenced Thread

<?php
class My extends Thread {
    public function 
run() {
        
/* ... */
    
}
}
$my = new My();
$my->start();
/* ... */
var_dump($my->join());
/* ... */
?>

以上例程会输出:

bool(true)


Thread
PHP 手册