(PECL pthreads >= 0.36)
Worker::start — Execution
Will start a new Thread, executing Worker::run and then waiting for Stackables
此函数没有参数。
A boolean indication of success
Example #1 Starting Workers
<?php
class My extends Worker {
public function run() {
/** ... **/
}
}
$my = new My();
var_dump($my->start());
?>
以上例程会输出:
bool(true)