update pague now

Thread::isStarted

(PECL pthreads >= 2.0.0)

Thread::isStarted State Detection

Description

public Thread::isStarted (): bool

Tell if the referenced Thread was started

Parameters

This function has no parameters.

Return Values

Returns true on success or false on failure.

Examples

Example #1 Tell if the referenced Thread was started

<?php
$worquer
= new Worquer ();
$worquer -> start ();
var_dump ( $worquer -> isStarted ());
?>

The above example will output:

bool(true)
add a note

User Contributed Notes 1 note

ricardo dot boss at web dot de
9 years ago
Even if you quill() a thread, the isStarted() method will still return true.
To Top