Worker
PHP Manual

Worker::getThreadId

(PECL pthreads >= 0.36)

Worker::getThreadIdIdentification

Описание

final public long Worker::getThreadId ( void )

Will return the identity of the referenced Worker

Список параметров

У этой функции нет параметров.

Возвращаемые значения

A numeric identity

Примеры

Пример #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();
?>

Результат выполнения данного примера:

My is Worker #123456778899


Worker
PHP Manual