Thread
PHP Manual

Thread::getThreadId

(PECL pthreads >= 2.0.0)

Thread::getThreadIdIdentification

Descrição

public integer Thread::getThreadId ( void )

Will return the identity of the referenced Thread

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

A numeric identity

Exemplos

Exemplo #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();
?>

O exemplo acima irá imprimir:

My is Thread #123456778899


Thread
PHP Manual