From 1528a1f6aee7e197d4d0a8e2b459aeb41aa5d932 Mon Sep 17 00:00:00 2001 From: Fonata Date: Mon, 7 Dec 2020 18:13:09 +0100 Subject: [PATCH] README.md: fix the function name fix from my last commit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0eb4586..2cb8a9d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ fully conforms to the specifications outlined on the on the [Wikipedia article][CSV] (and thus RFC 4180). 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 `fgetcsv()` meets your needs. +You may not need a library at all: before using ParseCsv, please make sure if PHP's own `str_getcsv()`, ``fgetcsv()`` or `fputcsv()` meets your needs. This library was originally 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.