ns_016.phpt 226 B

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