mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
7aacc705d0
Closes GH-5958
11 lines
132 B
PHP
11 lines
132 B
PHP
--TEST--
|
|
014: Name conflict and functions (php name)
|
|
--FILE--
|
|
<?php
|
|
namespace test\ns1;
|
|
|
|
echo strlen("Hello"),"\n";
|
|
?>
|
|
--EXPECT--
|
|
5
|