(PECL pthreads >= 0.36)
Worker::getThreadId — Identification
Will return the identity of the referenced Worker
This function has no parameters.
A numeric identity
Example #1 Return the identity of the referenced Worker
<?php
class My extends Worker {
public function run() {
printf("%s is Worker #%lu\n", __CLASS__, $this->getThreadId());
}
}
$my = new My();
$my->start();
?>
The above example will output:
My is Worker #123456778899