Thread::getThreadId() returns 0 if the thread has not been started.
(PECL pthreads >= 2.0.0)
Thread::getThreadId — Identification
Cette fonction ne contient aucun paramètre.
Une identité numérique.
Exemple #1 Retourne l'identité du Thread référencé
<?php
class My extends Thread {
public function run() {
printf("%s est le Thread #%lu\n", __CLASS__, $this->getThreadId());
}
}
$my = new My();
$my->start();
?>
L'exemple ci-dessus va afficher :
My est le Thread #123456778899
Thread::getThreadId() returns 0 if the thread has not been started.