Thread::globally

(PECL pthreads < 3.0.0)

Thread::globallyִ��

Warning

pthreads v3 �����Ƴ��˷�����

˵��

public static Thread::globally ( void ) : mixed

��ȫ�ַ�Χ��ִ�д����

����

�˺���û�в�����

����ֵ

�����ô����ķ���ֵ

����

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) {
}