Thread::getThreadId

(PECL pthreads >= 2.0.0)

Thread::getThreadIdIdentification

Описание

public integer Thread::getThreadId ( void )

Will return the identity of the referenced Thread

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

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

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

A numeric identity

Примеры

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

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

My is Thread #123456778899

Коментарии

Thread::getThreadId() returns 0 if the thread has not been started.
2015-07-12 14:00:45
http://php5.kiev.ua/manual/ru/thread.getthreadid.html

    Поддержать сайт на родительском проекте КГБ