chadanuk / php_csv_browser
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/chadanuk/php_csv_browser
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2025-10-08 08:28:51 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');