Worker
PHP Manual

Worker::start

(PECL pthreads >= 0.36)

Worker::startExecution

Descrierea

final public boolean Worker::start ( void )

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

Parametri

Această funcție nu are parametri.

Valorile întoarse

A boolean indication of success

Exemple

Example #1 Starting Workers

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

Exemplul de mai sus va afișa:

bool(true)


Worker
PHP Manual