public function CsvParser::lastLinePos in Feeds 8.3
Gets the byte number where the parser left off.
This position can be used to set the start byte for the next iteration.
Return value
int The byte position of where parsing ended.
File
- src/
Component/ CsvParser.php, line 178
Class
- CsvParser
- Parses an RFC 4180 style CSV file.
Namespace
Drupal\feeds\ComponentCode
public function lastLinePos() {
return $this->filePosition;
}