Quantcast
Channel: Active questions tagged linefeed+php - Stack Overflow
Viewing all articles
Browse latest Browse all 21

For PHP, how to read in correct lines from CSV file with LF in some CSV text field?

$
0
0

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)?


Viewing all articles
Browse latest Browse all 21

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>