Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ReadInterface.php
Go to the documentation of this file.
1 <?php
7 
12 interface ReadInterface
13 {
20  public function read($length);
21 
29  public function readAll($flag = null, $context = null);
30 
38  public function readLine($length, $ending = null);
39 
49  public function readCsv($length = 0, $delimiter = ',', $enclosure = '"', $escape = '\\');
50 
56  public function tell();
57 
65  public function seek($length, $whence = SEEK_SET);
66 
72  public function eof();
73 
79  public function close();
80 
86  public function stat();
87 }
readCsv($length=0, $delimiter=',', $enclosure='"', $escape = '\\')