blob: cbbcc94b362771eff02367f8141229993b0cee2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
015: Name conflict and functions (php name in case if ns name exists)
--FILE--
<?php
namespace test\ns1;
function strlen($x) {
return __FUNCTION__;
}
echo \strlen("Hello"),"\n";
?>
--EXPECT--
5
|