mirror of
https://github.com/php/php-src.git
synced 2024-12-18 22:41:20 +08:00
23 lines
249 B
Plaintext
23 lines
249 B
Plaintext
|
--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)
|