Thread
PHP Manual

Thread::getCurrentThreadId

(PECL pthreads >= 2.0.0)

Thread::getCurrentThreadId — Identification

Описание

public static integer Thread::getCurrentThreadId ( void )

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


Thread
PHP Manual