summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_013.phpt
blob: f268fe2f96254bf8e721f19408aba2eb0c05f0d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
013: Name conflict and functions (ns name)
--FILE--
<?php
namespace test\ns1;

function strlen($x) {
    return __FUNCTION__;
}

echo strlen("Hello"),"\n";
?>
--EXPECT--
test\ns1\strlen