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
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is auto-updated.
Last update: 2026-09-08 10:29:46 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');