Thread::getCurrentThread
(PECL pthreads >= 2.0.0)
Thread::getCurrentThread — Identification
Description
Return a reference to the currently executing Thread
Parameters
This function has no parameters.
Return Values
An object representing the currently executing Thread
Examples
Example #1 Return the currently executing Thread
<?php
class My extends Thread {
public function run() {
var_dump(Thread::getCurrentThread());
}
}
$my = new My();
$my->start();
?>
The above example will output:
object(My)#2 (0) { }
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения для управления процессами программ
- pthreads
- Функция Thread::detach() - Execution
- Функция Thread::getCreatorId() - Identification
- Функция Thread::getCurrentThread() - Identification
- Функция Thread::getCurrentThreadId() - Identification
- Функция Thread::getThreadId() - Identification
- Функция Thread::globally() - Execution
- Функция Thread::isJoined() - State Detection
- Функция Thread::isStarted() - State Detection
- Функция Thread::join() - Synchronization
- Функция Thread::kill() - Execution
- Функция Thread::start() - Execution
Коментарии
404 Not Found