为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用PHP解析CSV文件

如何使用PHP解析CSV文件

PHP
慕侠2389804 2019-10-17 12:35:17
假设我有一个.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解析内容?
查看完整描述

3 回答

?
千万里不及你

TA贡献1784条经验 获得超9个赞

由于PHP> = 5.3.0,答案要短一些:


    $csvFile = file('../somefile.csv');

    $data = [];

    foreach ($csvFile as $line) {

        $data[] = str_getcsv($line);

    }


查看完整回答
反对 回复 2019-10-17
?
一只萌萌小番薯

TA贡献1795条经验 获得超7个赞

刚刚发现了一种在解析时获取索引的便捷方法。我的主意被炸了。


$handle = fopen("test.csv", "r");

for ($i = 0; $row = fgetcsv($handle ); ++$i) {

    // Do something will $row array

}

fclose($handle);


查看完整回答
反对 回复 2019-10-17
  • 3 回答
  • 0 关注
  • 608 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信