Skip to content

Releases: jabranr/csv-parser

Support for PHP 5 deprecated

04 Mar 11:49
2ae17ff
Compare
Choose a tag to compare
Upgrade php support (#25)

*  Update PHP support
*  Update PHPUnit support

Character encoding support

09 Feb 18:29
Compare
Choose a tag to compare

All thanks to our brilliant contributors, @kevinsearle and @vatri for introducing the character encoding and handling support.

Originally @vatri raised the problem (#13) after facing it in one of the projects using this library and @kevinsearle came forward with the prompt solution (#14).

Well done both! 💯

Example:

$csv = new CSV_Parser();
$csv->setEncoding('ASCII');
$csv->encode();

$encodedData = $csv->getData();