ns_065.phpt 171 B

1234567891011121314
  1. --TEST--
  2. 065: Multiple names in use statement
  3. --FILE--
  4. <?php
  5. use X\Y as test, X\Z as test2;
  6. require "ns_065.inc";
  7. test\foo();
  8. test2\foo();
  9. ?>
  10. --EXPECT--
  11. X\Y\foo
  12. X\Z\foo