503f75d08b
These names don't make sense now that we run both suites the same way.
17 linhas
300 B
PHP
17 linhas
300 B
PHP
<?
|
|
|
|
$GLOBALS['foo'] = array();
|
|
$GLOBALS['foo']['bar'] = 0xba53ba11;
|
|
$GLOBALS['bar'] = 0xdeadbeef;
|
|
|
|
function byRef(&$a) {
|
|
$a >>= 16;
|
|
}
|
|
|
|
var_dump($GLOBALS['foo']);
|
|
var_dump($GLOBALS['bar']);
|
|
byRef($GLOBALS['foo']['bar']);
|
|
byRef($GLOBALS['bar']);
|
|
var_dump($GLOBALS['foo']);
|
|
var_dump($GLOBALS['bar']);
|