Exemplo n.º 1
0
 /**
  * Rewind the Iterator to the first element (Iterator interface)
  */
 public function rewind()
 {
     rewind($this->_file);
     $this->_getNextRow();
     // skip first line with the header
     parent::rewind();
 }