public function CSVFIReader::get in Feed Import 7.3
This method returns the next available item or NULL if there are no items left.
Return value
mixed The read item
Overrides FeedImportReader::get
1 call to CSVFIReader::get()
- CSVFIReader::init in feed_import_base/
inc/ feed_import_readers.inc - Here you'll init your reader.
File
- feed_import_base/
inc/ feed_import_readers.inc, line 588 - This file contains implementations of feed import readers.
Class
- CSVFIReader
- CSV Reader class, used to read csv files.
Code
public function get() {
return fgetcsv($this->fh, $this->options['length'], $this->options['delimiter'], $this->options['enclosure'], $this->options['escape']);
}