Thread
PHP Manual

Thread::start

(PECL pthreads >= 0.34)

Thread::startExecution

Descripción

final public boolean Thread::start ( void )

Will start a new Thread to execute the implemented run method

Parámetros

Esta función no tiene parámetros.

Valores devueltos

A boolean indication of success

Ejemplos

Ejemplo #1 Starting Threads

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

El resultado del ejemplo sería:

bool(true)


Thread
PHP Manual