Thread::kill

(PECL pthreads < 3.0.0)

Thread::killExecution

Uyarı

This method has been removed in pthreads v3.

Açıklama

public Thread::kill ( void ) : void

Forces the referenced Thread to terminate

Uyarı

The programmer should not ordinarily kill Threads by force

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

A boolean indication of success

Örnekler

Örnek 1 Kill the referenced Thread

<?php
class 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());
?>

Yukarıdaki örneğin çıktısı:

bool(true)