(PECL pthreads >= 2.0.0)
Worker::shutdown — Synchronization
Shuts down the Worker after executing all the objects previously stacked
Questa funzione non contiene parametri.
Example #1 Shutdown the referenced Worker
<?php
$my = new Worker();
$my->start();
/* ... */
var_dump($my->shutdown());
/* ... */
?>
Il precedente esempio visualizzerĂ :
bool(true)