Thread::kill
(PECL pthreads >= 2.0.0)
Thread::kill — Execution
Beschreibung
public void Thread::kill
( void
)
Forces the referenced Thread to terminate
Warnung
The programmer should not ordinarily kill Threads by force
Parameter-Liste
Diese Funktion hat keine Parameter.
Rückgabewerte
A boolean indication of success
Beispiele
Beispiel #1 Kill the referenced Thread
<?php
class T extends Thread {
public function run() {
$stdin = fopen("php://stdin", "r");
while(($line = fgets($stdin))) {
echo $line;
}
}
}
$t = new T();
$t->start();
var_dump($t->kill());
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
bool(true)