(PECL pthreads < 3.0.0)
Thread::kill — ִ��
pthreads v3 �����Ƴ��˷�����
ǿ���߳���ֹ
ͨ������£�����Ա��Ӧ��ǿ��ɱ���߳�
�˺���û�в�����
����ֵ����ʾ�����ɹ����
Example #1 ɱ���߳�
<?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)