Thread::globally

(PECL pthreads >= 2.0.1)

Thread::globallyExecution

설명

public static mixed Thread::globally ( void )

Will execute a Callable in the global scope

인수

이 함수는 인수가 없습니다.

반환값

The return value of the Callable

예제

Example #1 Execute in the global scope

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

add a note add a note

User Contributed Notes 1 note

up
12
SolutionFix
9 years ago
"This function has no parameters" and "void" in description, but in example unnamed function passed. Looks like parameter not "void", but "callable".
To Top