]> git.mxchange.org Git - core.git/blobdiff - inc/classes/interfaces/io/file/csv/class_CsvInputStreamer.php
Continued CSV parsing:
[core.git] / inc / classes / interfaces / io / file / csv / class_CsvInputStreamer.php
index 957f6775060f603dfee377d014ecd7d89c40ee95..8b72ad2de02fe6eaf3596fcc80a732217428317a 100644 (file)
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 interface CsvInputStreamer extends FileInputStreamer {
+       /**
+        * Reads a line from CSV file and returns it as an indexed array
+        *
+        * @param       $columnSeparator        Character to use separting columns
+        * @return      $lineArray                      An index array with the read line
+        */
+       function readCsvFileLine ($columnSeparator);
 }
 
 // [EOF]