You are here

public function ParserCSV::setStartByte in Feeds 7.2

Same name and namespace in other branches
  1. 6 libraries/ParserCSV.inc \ParserCSV::setStartByte()
  2. 7 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 230
Contains CSV Parser.

Class

ParserCSV
Functionality to parse CSV files into a two dimensional array.

Code

public function setStartByte($start) {
  return $this->startByte = $start;
}