Thread
PHP Manual

Thread::start

(PECL pthreads >= 0.34)

Thread::startExecution

说明

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

Will start a new Thread to execute the implemented run method

参数

options

An optional mask of inheritance constants, by default PTHREADS_INHERIT_ALL

返回值

A boolean indication of success

范例

Example #1 Starting Threads

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

以上例程会输出:

bool(true)


Thread
PHP Manual