略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: Thread::getCreatorId

2024-04-28

Thread::getCreatorId

(PECL pthreads >= 2.0.0)

Thread::getCreatorId识别

说明

public Thread::getCreatorId(): int

返回创建当前线程的线程ID。

参数

此函数没有参数。

返回值

线程ID,数字格式

范例

示例 #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
add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/thread.getcreatorid.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3