Worker
PHP Manual

Worker::start

(PECL pthreads >= 0.36)

Worker::startExecution

说明

final public boolean Worker::start ( void )

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

参数

此函数没有参数。

返回值

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 Manual