You are here

public function ParserCSVIterator::releaseHandler in Feeds 7.2

Closes the current file.

File

libraries/ParserCSV.inc, line 41
Contains CSV Parser.

Class

ParserCSVIterator
Text lines from file iterator.

Code

public function releaseHandler() {
  if ($this->handle) {
    fclose($this->handle);
    $this->handle = NULL;
  }
}