Thread
PHP Manual

Thread::start

(PECL pthreads >= 0.34)

Thread::startExecution

Description

final public boolean Thread::start ( void )

Will start a new Thread to execute the implemented run method

Parameters

This function has no parameters.

Return Values

A boolean indication of success

Examples

Example #1 Starting Threads

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

The above example will output:

bool(true)


Thread
PHP Manual