Worker
PHP Manual

Worker::start

(PECL pthreads >= 0.36)

Worker::startExecution

Descripción

final public boolean Worker::start ( void )

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

Parámetros

Esta función no tiene parámetros.

Valores devueltos

A boolean indication of success

Ejemplos

Ejemplo #1 Starting Workers

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

El resultado del ejemplo sería:

bool(true)


Worker
PHP Manual