summaryrefslogtreecommitdiff
path: root/Zend/tests/global_with_side_effect_name.phpt
blob: a1ee240c48b804ddf9be29f29aa40ca442949de9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--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)