(PHP 5, PHP 7, PHP 8)
zend_thread_id — 返回當(dāng)前線程的唯一識(shí)別符
該函數(shù)返回當(dāng)前線程的唯一識(shí)別符。
以整型(integer)返回線程的 ID。
示例 #1 zend_thread_id() 例子
<?php
$thread_id = zend_thread_id();
echo 'Current thread id is: ' . $thread_id;
?>
以上例程的輸出類似于:
Current thread id is: 7864
注意:
該函數(shù)僅在以下情況有效:PHP 內(nèi)置 ZTS(Zend 線程安全)的支持, 并開啟調(diào)試模式(
--enable-debug
)時(shí)。