(PECL pthreads >= 0.36)
Worker::start — Execution
Will start a new Thread, executing Worker::run and then waiting for Stackables
Esta función no tiene parámetros.
A boolean indication of success
Ejemplo #1 Starting Workers
<?php
class My extends Worker {
public function run() {
/** ... **/
}
}
$my = new My();
var_dump($my->start());
?>
El resultado del ejemplo sería:
bool(true)