Thread
PHP Manual

Thread::kill

(PECL pthreads >= 2.0.0)

Thread::kill — Execution

説明

public void 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

<?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)


Thread
PHP Manual