Thread :: getCreatorId - Identificación
Sintaxis
public integer Thread::getCreatorId( void )
La función Thread :: getCreatorId () puede devolver una identidad de Thread que creó un Thread referenciado.
La función Thread :: getCreatorId () no tiene ningún parámetro y puede devolver una identidad numérica.
Ejemplo
<?php
class My extends Thread {
public function run() {
printf("%s created by Thread #%lu\n", __CLASS__, $this->getCreatorId());
}
}
$my = new My();
$my->start();
?>