(PECL pthreads < 3.0.0)
Thread::globally — ִ��
pthreads v3 �����Ƴ��˷�����
�˺���û�в�����
�����ô����ķ���ֵ
Example #1 ��ȫ�ַ�Χִ�д����
<?php
class My extends Thread {
public function run() {
global $std;
Thread::globally(function(){
$std = new stdClass;
});
var_dump($std);
}
}
$my = new My();
$my->start();
?>
�������̻������
object(stdClass)#3 (0) { }