PHP - Funzione Thread :: getCurrentThreadId ()
Thread :: getCurrentThreadId - Identificazione
Sintassi
public static integer Thread::getCurrentThreadId( void )
La funzione Thread :: getCurrentThreadId () può restituire l'identità del thread attualmente in esecuzione.
La funzione Thread :: getCurrentThreadId () non dispone di parametri e può restituire un'identità numerica.
Esempio
<?php
class My extends Thread {
public function run() {
printf("%s is Thread #%lu\n", __CLASS__, Thread::getCurrentThreadId());
}
}
$my = new My();
$my->start();
?>