1: <?php
2: /**
3: * Created by PhpStorm.
4: * User: manus
5: * Date: 1/03/16
6: * Time: 10:23
7: */
8:
9: namespace GLFramework\DaMa\Manipulators;
10:
11:
12: class CSVManipulator extends ManipulatorCore
13: {
14:
15: private $handle;
16: public function open($file, $config = array())
17: {
18: $this->handle = fopen($file, "r");
19: }
20:
21: public function next()
22: {
23: return fgetcsv($this->handle, null, ";", "\"");
24: }
25: }