Thread::globally

(PECL pthreads < 3.0.0)

Thread::globallyExecution

Avertizare

This method has been removed in pthreads v3.

Descrierea

public static Thread::globally ( ) : mixed

Will execute a Callable in the global scope

Parametri

Această funcție nu are parametri.

Valorile întoarse

The return value of the Callable

Exemple

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();
?>

Exemplul de mai sus va afișa:

object(stdClass)#3 (0) {
}

add a note add a note

User Contributed Notes 1 note

up
12
SolutionFix
10 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