11 lines
132 B
Plaintext
11 lines
132 B
Plaintext
|
|
--TEST--
|
||
|
|
014: Name conflict and functions (php name)
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
namespace test\ns1;
|
||
|
|
|
||
|
|
echo strlen("Hello"),"\n";
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
5
|