1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 22:41:20 +02:00
Files
archived-php-src/Zend/tests/ns_017.phpt
Máté Kocsis 7aacc705d0 Add many missing closing PHP tags to tests
Closes GH-5958
2020-08-09 22:03:36 +02:00

16 lines
202 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