Worker
PHP 手册

Worker::start

(PECL pthreads >= 0.36)

Worker::startExecution

说明

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

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

参数

options

An optional mask of inheritance constants, by default PTHREADS_INHERIT_ALL

返回值

A boolean indication of success

范例

Example #1 Starting Workers

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

以上例程会输出:

bool(true)


Worker
PHP 手册