chadanuk / php_csv_browser
There is no license information available for the latest version (dev-master) of this package.
dev-master
2013-08-06 10:54 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2025-03-08 07:15:18 UTC
README
Get specific information from any CSV
Retrieves a row of data based on a field/value combo.
After your file is upload initialise the CSV browser by parsing the file name to the constructor.
$c = new CSV($filename);
Then use the finditem method to retrieve the row of data you want based on a field and value
$data = $c->finditem('name', 'Dave');