(PECL pthreads < 3.0.0)
Threaded::getTerminationInfo — ������
pthreads v3 �����Ƴ��˷����� ���⣬Threaded::run() �еĴ��룬 Ӧ��ʹ�� try...catch �������쳣��⣨��Ϊ�� PHP 7 �д� error ����Ϊ�׳��쳣�ķ�ʽ�ˣ���
���ض�����ն˴�����Ϣ
�˺���û�в�����
�����ն���Ϣ���������
Example #1 ����߳�����ʱ����������
<?php
class My extends Thread {
public function run() {
@not_found();
}
}
$my = new My();
$my->start();
$my->join();
var_dump($my->isTerminated(), $my->getTerminationInfo());
?>
�������̻������
bool(true) array(4) { ["scope"]=> string(2) "My" ["function"]=> string(3) "run" ["file"]=> string(29) "/usr/src/pthreads/sandbox.php" ["line"]=> int(4) }