Thread::getThreadId

(PECL pthreads >= 2.0.0)

Thread::getThreadIdIdentification

Açıklama

public Thread::getThreadId ( void ) : int

Will return the identity of the referenced Thread

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

A numeric identity

Örnekler

Örnek 1 Return the identity of the referenced Thread

<?php
class My extends Thread {
    public function 
run() {
        
printf("%s is Thread #%lu\n"__CLASS__$this->getThreadId());
    }
}
$my = new My();
$my->start();
?>

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

My is Thread #123456778899