Worker
PHP Manual

Worker::start

(PECL pthreads >= 0.36)

Worker::startExecution

Descrizione

final public boolean Worker::start ( void )

Will start a new Thread, executing Worker::run and then waiting for Stackables

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

A boolean indication of success

Esempi

Example #1 Starting Workers

<?php
class My extends Worker {
    public function 
run() {
        
/** ... **/
    
}
}
$my = new My();
var_dump($my->start());
?>

Il precedente esempio visualizzerĂ :

bool(true)


Worker
PHP Manual