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