Thread::isStarted

(PECL pthreads >= 2.0.0)

Thread::isStartedState 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)

Коментарии

Even if you kill() a thread, the isStarted() method will still return true.
2016-07-30 14:20:31
http://php5.kiev.ua/manual/ru/thread.isstarted.html

    Поддержать сайт на родительском проекте КГБ