1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 17:08:14 +02:00
Files
archived-php-src/Zend/tests/ns_016.phpt
T
2020-02-03 22:52:20 +01:00

15 lines
223 B
PHP

--TEST--
016: Run-time name conflict and functions (ns name)
--FILE--
<?php
namespace test\ns1;
function strlen($x) {
return __FUNCTION__;
}
$x = "test\\ns1\\strlen";
echo $x("Hello"),"\n";
--EXPECT--
test\ns1\strlen