PHP - Funzione Thread :: getCurrentThread ()
Thread :: getCurrentThread - Identificazione
Sintassi
public static Thread Thread::getCurrentThread ( void )
La funzione Thread :: getCurrentThread () può restituire un riferimento al thread attualmente in esecuzione.
La funzione Thread :: getCurrentThread () non ha parametri e può restituire un oggetto che rappresenta Thread attualmente in esecuzione.
Esempio
<?php
class My extends Thread {
public function run() {
var_dump(Thread::getCurrentThread());
}
}
$my = new My();
$my->start();
?>