ns_017.phpt 202 B

123456789101112131415
  1. --TEST--
  2. 017: Run-time name conflict and functions (php name)
  3. --FILE--
  4. <?php
  5. namespace test\ns1;
  6. function strlen($x) {
  7. return __FUNCTION__;
  8. }
  9. $x = "strlen";
  10. echo $x("Hello"),"\n";
  11. ?>
  12. --EXPECT--
  13. 5