gregwar / csv
CSV handling
dev-master
2014-09-02 09:56 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-10-24 04:43:22 UTC
README
This is a really simple CSV file readed that helps to do the columns matching with the file and the PHP world, for instance:
<?php // Creates a loader and define the columns $loader = new Gregwar\CSV\CSVFile; $loader->setColumns(array('lastname', 'firstname')); // Some data $data = array( array('firstname' => 'Bob', 'lastname' => 'Smith', 'age' => 30), array('lastname' => 'Taylor', 'firstname' => 'William', 'age' => 40), ); // Save the data to data.csv, using the above columns, note that age will // be lost $loader->save('data.csv', $data); // Loads the data back using the same columns matching $data = $loader->load('data.csv'); var_dump($data);