xref: /php-src/Zend/tests/ns_013.phpt (revision 7aacc705)
1--TEST--
2013: Name conflict and functions (ns name)
3--FILE--
4<?php
5namespace test\ns1;
6
7function strlen($x) {
8    return __FUNCTION__;
9}
10
11echo strlen("Hello"),"\n";
12?>
13--EXPECT--
14test\ns1\strlen
15