Worker
PHP Manual

Worker::start

(PECL pthreads >= 0.36)

Worker::startExecution

Descrição

final public boolean Worker::start ([ long $options ] )

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

Parâmetros

options

An optional mask of inheritance constants, by default PTHREADS_INHERIT_ALL

Valor Retornado

A boolean indication of success

Exemplos

Exemplo #1 Starting Workers

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

O exemplo acima irá imprimir:

bool(true)


Worker
PHP Manual