Thread::getCurrentThreadId

(PECL pthreads >= 2.0.0)

Thread::getCurrentThreadId識(shí)別

說(shuō)明

public static Thread::getCurrentThreadId(): int

返回當(dāng)前執(zhí)行線程的ID

參數(shù)

此函數(shù)沒(méi)有參數(shù)。

返回值

線程ID,數(shù)字格式

范例

示例 #1 返回當(dāng)前執(zhí)行線程的ID

<?php
class My extends Thread {
    public function 
run() {
        
printf("%s is Thread #%lu\n"__CLASS__Thread::getCurrentThreadId());
    }
}
$my = new My();
$my->start();
?>

以上例程會(huì)輸出:

My is Thread #123456778899