You are here

public function ParserCSV::setStartByte in Feeds 8.2

Set the byte where file should be started to read.

Useful when parsing a file in batches.

File

lib/Drupal/feeds/ParserCSV.php, line 124
Contains CSV Parser.

Class

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

Namespace

Drupal\feeds

Code

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