SectionIteratorObjects.php 356 B

12345678910111213141516
  1. <?php
  2. class SectionIteratorObjects {
  3. public $start = "It worked the first time.";
  4. protected $_data = array(
  5. array('item' => 'And it worked the second time.'),
  6. array('item' => 'As well as the third.'),
  7. );
  8. public function middle() {
  9. return new ArrayIterator($this->_data);
  10. }
  11. public $final = "Then, surprisingly, it worked the final time.";
  12. }