Thread::isStarted

(PECL pthreads >= 2.0.0)

Thread::isStartedState Detection

Açıklama

public Thread::isStarted ( void ) : bool

Tell if the referenced Thread was started

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

boolean indication of state

Örnekler

Örnek 1 Tell if the referenced Thread was started

<?php
$worker 
= new Worker();
$worker->start();
var_dump($worker->isStarted());
?>

Yukarıdaki örneğin çıktısı:

bool(true)