From 44ff705a238d02bbb087d491bfc839d1f2f95b1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Bl=C3=A4ul?= Date: Sun, 21 Jan 2018 15:18:04 +0100 Subject: [PATCH] Improved README.md: spelling, mention native PHP functions --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 83b4fcd..d04110b 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ fully conforms to the specifications outlined on the on the [Wikipedia article][CSV]. It has many advanced features which help make your life easier when dealing with CSV data. +You may not need a library at all: before using parseCSV, please make sure if PHP's own `str_getcsv()`, ``fgetcvs()`` or `fputcsv()` meets your needs. + 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. @@ -87,7 +89,7 @@ $csv->parse('data.csv'); **Add row/entry to end of CSV file** -_Only recommended when you know the extact structure of the file._ +_Only recommended when you know the exact structure of the file._ ```php $csv = new parseCSV();