factory_and_singleton_006.phpt 370 B

1234567891011121314151617181920
  1. --TEST--
  2. ZE2 factory and singleton, test 6
  3. --FILE--
  4. <?php
  5. class test {
  6. private function __destruct() {
  7. }
  8. }
  9. $obj = new test;
  10. $obj = NULL;
  11. echo "Done\n";
  12. ?>
  13. --EXPECTF--
  14. Fatal error: Uncaught Error: Call to private test::__destruct() from context '' in %sfactory_and_singleton_006.php:%d
  15. Stack trace:
  16. #0 {main}
  17. thrown in %sfactory_and_singleton_006.php on line %d