blob: ae2c81834559bf771b06ead426c5e24ec03133b8 (
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
|