public function ParserCSVIterator::rewind in Feeds 8.2
File
- lib/
Drupal/ feeds/ ParserCSVIterator.php, line 27
Class
- ParserCSVIterator
- Text lines from file iterator.
Namespace
Drupal\feedsCode
public function rewind($pos = 0) {
if ($this->handle) {
fseek($this->handle, $pos);
$this
->next();
}
}