Thread::getCurrentThreadId

(PECL pthreads >= 2.0.0)

Thread::getCurrentThreadIdIdentification

Описание

public static Thread::getCurrentThreadId ( ) : int

Will return the identity of the currently executing Thread

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

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

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

A numeric identity

Примеры

Пример #1 Return the identity of the currently executing Thread

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

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

My is Thread #123456778899