(PECL pthreads >= 2.0.0)
Thread::kill — Execution
Forces the referenced Thread to terminate
The programmer should not ordinarily kill Threads by force
この関数にはパラメータはありません。
A boolean indication of success
例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());
?>
上の例の出力は以下となります。
bool(true)