Worker
PHP Manual

Worker::getThreadId

(PECL pthreads >= 0.36)

Worker::getThreadIdIdentification

Descrierea

final public long Worker::getThreadId ( void )

Will return the identity of the referenced Worker

Parametri

Această funcție nu are parametri.

Valorile întoarse

A numeric identity

Exemple

Example #1 Return the identity of the referenced Worker

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

Exemplul de mai sus va afișa:

My is Worker #123456778899


Worker
PHP Manual