Thread :: globally - Execução
Sintaxe
public static mixed Thread::globally( void )
A função Thread :: globally () pode executar Callable em um escopo global.
A função Thread :: globally () não tem nenhum parâmetro e pode retornar o valor de Callable.
Exemplo
<?php
class My extends Thread {
public function run() {
global $std;
Thread::globally(function() {
$std = new stdClass;
});
var_dump($std);
}
}
$my = new My();
$my->start();
?>