Thread::kill
(PECL pthreads < 3.0.0)
Thread::kill — Execution
警告 This method has been removed in pthreads v3.
説明
public Thread::kill ( ) : void
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
<?phpclass 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)