Input csv file (note: there's a non-printable LF character \n after fruit):
1,"apple", "水果fruit\n",300
2,"donut", "甜點dessert",200
My PHP program:
function wpa(&$arr) { echo nl2br(print_r($arr, true)); }
header("Content-Type:text/html; charset=utf-8");
$lines = file("test.csv", FILE_IGNORE_NEW_LINES);
); wpa($lines);
Output:
Array
(
[0] => 1,"水果apple", "fruit
[1] => \n",300
[2] => 2,"甜點donut", "dessert",200
)
My question:
How can I read in the csv file and properly split it into 2 csv lines other than using fgetcsv? (note: Input file has BIG5-encoded Chinese characters and fgetcsv will mess up those Chinese characters on my PHP 5.2 environment)?