Thread
PHP Manual

Thread::kill

(PECL pthreads >= 2.0.0)

Thread::killExecution

Descripción

public void Thread::kill ( void )

Forces the referenced Thread to terminate

Advertencia

The programmer should not ordinarily kill Threads by force

Parámetros

Esta función no tiene parámetros.

Valores devueltos

A boolean indication of success

Ejemplos

Ejemplo #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());
?>

El resultado del ejemplo sería:

bool(true)


Thread
PHP Manual