(PECL pthreads >= 0.36)
Worker::start — Execution
Will start a new Thread, executing Worker::run and then waiting for Stackables
Bu işlevin değiştirgesi yoktur.
A boolean indication of success
Örnek 1 Starting Workers
<?php
class My extends Worker {
public function run() {
/** ... **/
}
}
$my = new My();
var_dump($my->start());
?>
Yukarıdaki örneğin çıktısı:
bool(true)