Thread :: globally - Ejecución
Sintaxis
public static mixed Thread::globally( void )
La función Thread :: globally () puede ejecutar Callable en un ámbito global.
La función Thread :: globally () no tiene ningún parámetro y puede devolver el valor de Callable.
Ejemplo
<?php
class My extends Thread {
public function run() {
global $std;
Thread::globally(function() {
$std = new stdClass;
});
var_dump($std);
}
}
$my = new My();
$my->start();
?>