public function ParserCSV::setStartByte in Feeds 7
Same name and namespace in other branches
- 6 libraries/ParserCSV.inc \ParserCSV::setStartByte()
- 7.2 libraries/ParserCSV.inc \ParserCSV::setStartByte()
Set the byte where file should be started to read.
Useful when parsing a file in batches.
File
- libraries/
ParserCSV.inc, line 169
Class
- ParserCSV
- Functionality to parse CSV files into a two dimensional array.
Code
public function setStartByte($start) {
return $this->startByte = $start;
}