(PECL pthreads >= 0.36)
Worker::start — Execution
$options
] )Will start a new Thread, executing Worker::run and then waiting for Stackables
options
An optional mask of inheritance constants, by default PTHREADS_INHERIT_ALL
A boolean indication of success
Example #1 Starting Workers
<?php
class My extends Worker {
public function run() {
/** ... **/
}
}
$my = new My();
var_dump($my->start());
?>
The above example will output:
bool(true)