xref: /PHP-5.5/Zend/tests/ns_015.phpt (revision 610c7fbe)
1--TEST--
2015: Name conflict and functions (php name in case if ns name exists)
3--FILE--
4<?php
5namespace test\ns1;
6
7function strlen($x) {
8	return __FUNCTION__;
9}
10
11echo \strlen("Hello"),"\n";
12--EXPECT--
135
14
15