xref: /PHP-8.0/Zend/tests/ns_017.phpt (revision 7aacc705)
1--TEST--
2017: Run-time name conflict and functions (php name)
3--FILE--
4<?php
5namespace test\ns1;
6
7function strlen($x) {
8    return __FUNCTION__;
9}
10
11$x = "strlen";
12echo $x("Hello"),"\n";
13?>
14--EXPECT--
155
16