ns_008.phpt 194 B

1234567891011121314
  1. --TEST--
  2. 008: __NAMESPACE__ constant and runtime names (ns name)
  3. --FILE--
  4. <?php
  5. namespace test;
  6. class foo {
  7. }
  8. $x = __NAMESPACE__ . "\\foo";
  9. echo get_class(new $x),"\n";
  10. ?>
  11. --EXPECT--
  12. test\foo