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_017.phpt
T
2020-02-03 22:52:20 +01:00

15 lines
199 B
PHP

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