iterator_068.phpt 558 B

12345678910111213141516171819202122232425262728293031323334
  1. --TEST--
  2. SPL: Iterator: Overloaded object and destruction
  3. --FILE--
  4. <?php
  5. class Test implements Iterator {
  6. function foo() {
  7. echo __METHOD__ . "()\n";
  8. }
  9. function rewind() {}
  10. function valid() {}
  11. function current() {}
  12. function key() {}
  13. function next() {}
  14. }
  15. class TestIteratorIterator extends IteratorIterator {
  16. function __destruct() {
  17. echo __METHOD__ . "()\n";
  18. $this->foo();
  19. }
  20. }
  21. $obj = new TestIteratorIterator(new Test);
  22. $obj->foo();
  23. unset($obj);
  24. ?>
  25. ===DONE===
  26. --EXPECT--
  27. Test::foo()
  28. TestIteratorIterator::__destruct()
  29. Test::foo()
  30. ===DONE===