(PECL pthreads >= 0.36)
Worker::getThreadId — Identification
Will return the identity of the referenced Worker
此函数没有参数。
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();
?>
以上例程会输出:
My is Worker #123456778899