Thread::getCurrentThread

(PECL pthreads >= 2.0.0)

Thread::getCurrentThread标识

描述

public static Thread::getCurrentThread(): Thread

返回对当前正在执行的 Thread 的引用

参数

此函数没有参数。

返回值

一个代表当前正在执行的 Thread 的对象

示例

示例 #1 返回当前正在执行的 Thread

<?php
class My extends Thread {
public function
run() {
var_dump(Thread::getCurrentThread());
}
}
$my = new My();
$my->start();
?>

上面的示例将输出

object(My)#2 (0) {
}

添加笔记

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top