Worker
PHP Manual

Worker::start

(PECL pthreads >= 0.36)

Worker::startExecution

Description

final public boolean Worker::start ( void )

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

Parameters

This function has no parameters.

Return Values

A boolean indication of success

Examples

Example #1 Starting Workers

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

The above example will output:

bool(true)


Worker
PHP Manual