summaryrefslogtreecommitdiff
path: root/Zend/tests/use_function/shadow_global.phpt
blob: 7c222d3afa4a7e8493e879f222ca92684452f9cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--TEST--
shadowing a global function with a local version
--FILE--
<?php

namespace {
    require 'includes/global_bar.inc';
    require 'includes/foo_bar.inc';
}

namespace {
    var_dump(bar());
}

namespace {
    use function foo\bar;
    var_dump(bar());
    echo "Done\n";
}

?>
--EXPECT--
string(10) "global bar"
string(9) "local bar"
Done