©
이 문서에서는 PHP 중국어 웹사이트 매뉴얼 풀어 주다
(PECL pthreads >= 2.0.0)
Thread::getCreatorId — 识别
返回创建当前线程的线程ID。
此函数没有参数。
线程ID,数字格式
Example #1 返回创建线程的线程或进程ID
<?php
class My extends Thread {
public function run () {
printf ( "%s created by Thread #%lu\n" , __CLASS__ , $this -> getCreatorId ());
}
}
$my = new My ();
$my -> start ();
?>
以上例程会输出:
My created by Thread #123456778899