Thread
PHP Manual

Thread::start

(PECL pthreads >= 0.34)

Thread::startExecution

Açıklama

final public boolean Thread::start ( void )

Will start a new Thread to execute the implemented run method

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

A boolean indication of success

Örnekler

Örnek 1 Starting Threads

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

Yukarıdaki örneğin çıktısı:

bool(true)


Thread
PHP Manual