ns_015.phpt 209 B

1234567891011121314
  1. --TEST--
  2. 015: Name conflict and functions (php name in case if ns name exists)
  3. --FILE--
  4. <?php
  5. namespace test\ns1;
  6. function strlen($x) {
  7. return __FUNCTION__;
  8. }
  9. echo \strlen("Hello"),"\n";
  10. ?>
  11. --EXPECT--
  12. 5