fgetcsv

How to parse a CSV file using PHP [duplicate]

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-26 11:43:15
This question already has an answer here: How to extract data from csv file in PHP 10 answers Suppose I have a .csv file with the following content: "text, with commas","another text",123,"text",5; "some without commas","another text",123,"text"; "some text with commas or no",,123,"text"; How can I parse the content through PHP? Just use the function for parsing a CSV file http://php.net/manual/en/function.fgetcsv.php $row = 1; if (($handle = fopen("test.csv", "r")) !== FALSE) { while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { $num = count($data); echo "<p> $num fields in line $row:

How to parse a CSV file using PHP [duplicate]

佐手、 提交于 2019-11-26 03:33:08
问题 This question already has answers here : How to extract data from csv file in PHP (10 answers) Closed 2 years ago . Suppose I have a .csv file with the following content: \"text, with commas\",\"another text\",123,\"text\",5; \"some without commas\",\"another text\",123,\"text\"; \"some text with commas or no\",,123,\"text\"; How can I parse the content through PHP? 回答1: Just use the function for parsing a CSV file http://php.net/manual/en/function.fgetcsv.php $row = 1; if (($handle = fopen(