Thread::isStarted
(PECL pthreads >= 2.0.0)
Thread::isStarted — State Detection
Описание
public boolean Thread::isStarted
( void
)
Tell if the referenced Thread was started
Список параметров
У этой функции нет параметров.
Возвращаемые значения
boolean indication of state
Примеры
Пример #1 Tell if the referenced Thread was started
<?php
$worker = new Worker();
$worker->start();
var_dump($worker->isStarted());
?>
Результат выполнения данного примера:
bool(true)
- 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
Коментарии
Even if you kill() a thread, the isStarted() method will still return true.