(PECL pthreads >= 2.0.0)
Threaded::isTerminated — ״̬���
����Ƿ������������δ������쳣������ִ�й����쳣��ֹ
�˺���û�в�����
����ֵ����ʾ�Ƿ��쳣��ֹ
Example #1 ������״̬
<?php
class My extends Thread {
public function run() {
i_do_not_exist();
}
}
$my = new My();
$my->start();
$my->join();
var_dump($my->isTerminated());
?>
�������̻������
bool(true)