PHP - Funzione Thread :: getCreatorId ()
Discussione :: getCreatorId - Identificazione
Sintassi
public integer Thread::getCreatorId( void )
La funzione Thread :: getCreatorId () può restituire un'identità di Thread che ha creato un Thread di riferimento.
La funzione Thread :: getCreatorId () non dispone di parametri e può restituire un'identità numerica.
Esempio
<?php
class My extends Thread {
public function run() {
printf("%s created by Thread #%lu\n", __CLASS__, $this->getCreatorId());
}
}
$my = new My();
$my->start();
?>