Thread::start
(PECL pthreads >= 2.0.0)
Thread::start — 実行する
パラメータ
options
-
オプションのマスク。継承に関する定数で、デフォルトは PTHREADS_INHERIT_ALL。
例
例1 スレッドの開始
<?php
class My extends Thread {
public function run() {
/** ... **/
}
}
$my = new My();
var_dump($my->start());
?>
上の例の出力は以下となります。
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