Thread::join
(PECL pthreads >= 2.0.0)
Thread::join — 同期処理
パラメータ
この関数にはパラメータはありません。
例
例1 スレッドとのジョイン
<?php
class My extends Thread {
public function run() {
/* ... */
}
}
$my = new My();
$my->start();
/* ... */
var_dump($my->join());
/* ... */
?>
上の例の出力は以下となります。
bool(true)
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google