You are here

public function ParserCSVIterator::__construct in Feeds 8.2

File

lib/Drupal/feeds/ParserCSVIterator.php, line 15

Class

ParserCSVIterator
Text lines from file iterator.

Namespace

Drupal\feeds

Code

public function __construct($filepath) {
  $this->handle = fopen($filepath, 'r');
  $this->currentLine = NULL;
  $this->currentPos = NULL;
}