Thread :: getThreadId - Identificação
Sintaxe
public integer Thread::getThreadId( void )
A função Thread :: getThreadId () pode retornar uma identidade do Thread referenciado.
A função Thread :: getThreadId () não tem nenhum parâmetro e pode retornar uma identidade numérica.
Exemplo
<?php
class My extends Thread {
public function run() {
printf("%s is Thread #%lu\n", __CLASS__, $this->getThreadId());
}
}
$my = new My();
$my->start();
?>