PHP Classes

PG CSV: Parse and write data from arrays into CSV files

Recommend this page to a friend!
  Info   View files View files (3)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 249 This week: 1All time: 7,928 This week: 560Up
Version License PHP version Categories
pg-csv 0.1MIT/X Consortium ...5PHP 5, Files and Folders
Description 

Author

This class can parse and write data from arrays into CSV files.

It can read and parse a CSV file and return its data as an array.

The class can write records of data from associative arrays to a CSV file.

Picture of P Guardiario
Name: P Guardiario <contact>
Classes: 6 packages by
Country: Philippines Philippines
Age: ???
All time rank: 162618 in Philippines Philippines
Week rank: 411 Up4 in Philippines Philippines Up

Details

pgcsv ===== A 'pretty good' CSV library for Php ### Writing ----------- ```php $fields = array('name', 'phone', 'address'); $csv = new CSV('output.csv', $fields); $person = array( 'name' => 'Jow Brown', 'phone' => '123 222-0123', 'address' => '666 Buckingham Palace' ); $csv->save($person); $csv->close(); ``` By default, CSV saves data with a utf-8 BOM to make it Excel-friendly. You can change that though. ### Reading ----------- ```php $data = CSV::read('input.csv'); ``` CSV expects the first row to be headers, but you can change that. You can also change the delimiter. ### Iterating ----------- ```php foreach(CSV::iterate('input.csv') as $row){ echo $row['name'] . "\n"; } ``` Iterating this way means the whole file does not need to be in memory. ### CSV Generation ----------- ```php header("Content-type: text/csv"); header("Content-Disposition: attachment; filename=file.csv"); $fields = array('name', 'phone', 'address'); $csv = new CSV('php://output', $fields); $person = array( 'name' => 'Jow Brown', 'phone' => '123 222-0123', 'address' => '666 Buckingham Palace' ); $csv->save($person); $csv->close(); ```

  Files folder image Files  
File Role Description
Plain text file pgcsv.php Class Class source
Accessible without login Plain text file README.md Doc. Documentation
Plain text file test.php Class Class source

 Version Control Unique User Downloads Download Rankings  
 100%
Total:249
This week:1
All time:7,928
This week:560Up