function ParserCSVIterator::__destruct in Feeds 6
Same name and namespace in other branches
- 7.2 libraries/ParserCSV.inc \ParserCSVIterator::__destruct()
- 7 libraries/ParserCSV.inc \ParserCSVIterator::__destruct()
File
- libraries/
ParserCSV.inc, line 24
Class
- ParserCSVIterator
- Text lines from file iterator.
Code
function __destruct() {
if ($this->handle) {
fclose($this->handle);
}
}