mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
23 lines
249 B
PHP
23 lines
249 B
PHP
--TEST--
|
|
Global variable import using a name with side effects
|
|
--FILE--
|
|
<?php
|
|
|
|
function sf($arg) {
|
|
echo "called\n";
|
|
return $arg;
|
|
}
|
|
|
|
function test() {
|
|
global ${sf("a")};
|
|
var_dump($a);
|
|
}
|
|
|
|
$a = 42;
|
|
test();
|
|
|
|
?>
|
|
--EXPECT--
|
|
called
|
|
int(42)
|