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