From 499088b3b2f407178c254dbadd658938a511e98a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Bl=C3=A4ul?= Date: Thu, 22 Feb 2018 08:42:13 +0100 Subject: [PATCH] Slightly improved README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 43109b0..f2960f6 100644 --- a/README.md +++ b/README.md @@ -45,10 +45,10 @@ To use ParseCSV, you then have to add a `require 'parsecsv.lib.php';` line. * Error detection for incorrectly formatted input. It attempts to be intelligent, but can not be trusted 100% due to the structure of CSV, and how different programs like Excel for example outputs CSV data. -* Support for character encoding conversion using PHP's _iconv_ function - (requires PHP 5). -* Supports PHP 5.4 and higher. It certainly works with PHP 7.2 - +* Support for character encoding conversion using PHP's + `iconv()` and `mb_convert_encoding()` functions. +* Supports PHP 5.4 and higher. + It certainly works with PHP 7.2 and all versions in between. ## Example Usage @@ -105,7 +105,7 @@ $csv = new ParseCsv\Csv(); $csv->save('data.csv', array(array('1986', 'Home', 'Nowhere', '')), true); ``` -**Convert 2D array to csv data and send headers to browser to treat output as +**Convert 2D array to CSV data and send headers to browser to treat output as a file and download it** ```php