Updated readme

This commit is contained in:
William Knauss
2014-05-16 17:35:08 -04:00
parent fff3e73f08
commit ab069e5d2d

View File

@@ -1,14 +1,13 @@
# parseCSV # parseCSV
_Note: I am no longer actively working on this library, but please submit pull Note: parseCSV is now being revised to PHP 5 standards. If you have an issue or a feature request we encourage you to open an issue.
requests for any fixes/features you would like to see added._
parseCSV is an easy to use PHP class to read and write CSV data properly. It parseCSV is an easy to use PHP class that reads and writes CSV data properly. It
fully conforms to the specifications outlined on the on the fully conforms to the specifications outlined on the on the
[Wikipedia article][CSV]. It has a few advanced features which help make your [Wikipedia article][CSV]. It has many advanced features which help make your
life easier when dealing with CSV data. life easier when dealing with CSV data.
I originally created this library in early 2007 due to the lack of built-in This library was originaly created in early 2007 by [jimeh](https://github.com/jimeh) due to the lack of built-in
and third-party support for handling CSV data in PHP. and third-party support for handling CSV data in PHP.
[csv]: http://en.wikipedia.org/wiki/Comma-separated_values [csv]: http://en.wikipedia.org/wiki/Comma-separated_values
@@ -84,7 +83,7 @@ a file and download it**
```php ```php
$csv = new parseCSV(); $csv = new parseCSV();
$csv->output(true, 'movies.csv', $array); $csv->output('movies.csv', $array, array('field 1', 'field 2'), ',');
``` ```