小编典典

如何使用 PHP 解析 CSV 文件

all

假设我有一个.csv包含以下内容的文件:

 "text, with commas","another text",123,"text",5; 
 "some    without commas","another text",123,"text";
 "some text with  commas or no",,123,"text";

如何通过 PHP 解析内容?


阅读 47

收藏
2022-08-07

共1个答案

小编典典

只需使用解析 CSV 文件的功能

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: <br /></p>\n";
    $row++;
    for ($c=0; $c < $num; $c++) {
        echo $data[$c] . "<br />\n";
    }
  }
  fclose($handle);
}
2022-08-07