如何使用PHP读取csv文件中的第二列?

时间:2015-03-06 05:17:14

标签: php string algorithm file csv

我只需要使用PHP从csv文件中读取第二列数据。

我的文件csv文件数据是

 CreatedAt  Name  Bookable
    2015     xxx    20:12:12
    2015     xx1    20:12:40     
    2015     xx1    21:12:50

在这里,我需要从上面的csv文件中获取名称。怎么做。请帮我。

1 个答案:

答案 0 :(得分:1)

我有点累,但这会有效

<?php

$file = file('1.csv');

for($i = 1; $i < count($file); $i++) {
    echo array_values(array_unique(explode(' ', $file[$i])))[2] . "<br>\n";
}   

输出:

  

XXX
   XX1
   XX1