(PECL pthreads >= 2.0.0)
Thread::getCurrentThreadId — Identification
Will return the identity of the currently executing Thread
Cette fonction ne contient aucun paramètre.
A numeric identity
Exemple #1 Return the identity of the currently executing Thread
<?php
class My extends Thread {
public function run() {
printf("%s is Thread #%lu\n", __CLASS__, Thread::getCurrentThreadId());
}
}
$my = new My();
$my->start();
?>
L'exemple ci-dessus va afficher :
My is Thread #123456778899