spl_autoload_009.phpt 347 B

1234567891011121314151617181920212223
  1. --TEST--
  2. SPL: spl_autoload() and friends
  3. --INI--
  4. include_path=.
  5. --FILE--
  6. <?php
  7. function my_autoload($name)
  8. {
  9. require $name . '.class.inc';
  10. var_dump(class_exists($name));
  11. }
  12. spl_autoload_register("spl_autoload");
  13. spl_autoload_register("my_autoload");
  14. $obj = new testclass;
  15. ?>
  16. --EXPECTF--
  17. %stestclass.inc
  18. %stestclass.class.inc
  19. bool(true)