public function ParserCSV::timeoutReached in Feeds 6
Same name and namespace in other branches
- 7.2 libraries/ParserCSV.inc \ParserCSV::timeoutReached()
- 7 libraries/ParserCSV.inc \ParserCSV::timeoutReached()
After calling the parse() method, determine if the timeout (set by the setTimeout() method) has been reached.
Deprecated
Use lastLinePos() instead to determine whether a file has finished parsing.
File
- libraries/
ParserCSV.inc, line 136
Class
- ParserCSV
- Functionality to parse CSV files into a two dimensional array.
Code
public function timeoutReached() {
return $this->timeoutReached;
}