Thread
PHP Manual

Thread::isStarted

(PECL pthreads >= 2.0.0)

Thread::isStartedState Detection

Descrizione

public boolean Thread::isStarted ( void )

Tell if the referenced Thread was started

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

boolean indication of state

Esempi

Example #1 Tell if the referenced Thread was started

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

Il precedente esempio visualizzerĂ :

bool(true)


Thread
PHP Manual