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