1 | <?php |
||
5 | abstract class AbstractBase |
||
6 | { |
||
7 | protected $handle; |
||
8 | protected $delimiter = ','; |
||
9 | protected $enclosure = '"'; |
||
10 | |||
11 | public function __construct($path, $mode = 'r+', $isNeedBOM = false, $headers = array()) |
||
31 | |||
32 | public function __destruct() |
||
36 | |||
37 | public function setDelimiter($delimiter) |
||
41 | |||
42 | public function setEnclosure($enclosure) |
||
46 | } |
||
47 |