Thread::getThreadId
(PECL pthreads >= 2.0.0)
Thread::getThreadId — 識別
パラメータ
この関数にはパラメータはありません。
戻り値
数値の ID を返します。
例
例1 このスレッドの ID を返す
<?php
class My extends Thread {
public function run() {
printf("%s is Thread #%lu\n", __CLASS__, $this->getThreadId());
}
}
$my = new My();
$my->start();
?>
上の例の出力は以下となります。
My is Thread #123456778899
+add a note
User Contributed Notes 1 note
derkontrollfreak+php at gmail dot com ¶
9 years ago
Thread::getThreadId() returns 0 if the thread has not been started.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google