4

我有一个需要导入关联数组的 CSV 文件。数据如下所示:

 "General Mills Cereal",http://sidom.com/dyn_li/60.0.75.0/Retailers/Saws/120914_20bp4_img_8934.jpg,$2.25,"9-17.12 oz., select varieties","Valid Sep 14, 2012 - Sep 20, 2012",Saws,"Grocery"

我想将此数据转换为一个数组,我可以在其中获取如下值:

 $items[$row]['title'];
 $items[$row]['imgurl'];
 $items[$row]['itemprice'];
 $items[$row]['itemsize'];
 $items[$row]['expir'];
 $items[$row]['storename'];
 $items[$row]['storetype'];

上面的元素对应于我的 CSV 文件。如何将此文件导入这样的数组?

4

3 回答 3

5

我建议使用内置函数fgetcsv
还有一个简单的用法示例。

于 2012-09-18T19:05:46.570 回答
4

fgetcsv()会给你一个数字索引的数组。

一旦您阅读了所有记录 to say $rawData,其结构如下:

$rawData = array(0 => array(0 => "General Mills Cereal",
                            1 => "http://sidom.com/dyn_li/60.0.75.0/Retailers/Saws/120914_20bp4_img_8934.jpg"
                            2 => "$2.25",
                            3 => "9-17.12 oz.",
                            4 => "select varieties",
                            5 => "Valid Sep 14, 2012 - Sep 20, 2012",
                            6 => "Saws",
                            7 => "Grocery"),
                 ...);

要将此$rawData数组转换为您想要的,您可以执行以下操作:

$fields = array('title', 'imgurl', 'itemprice', 'itemsize',
                'expir', 'storename', 'storetype');

$data = array_map(function($cRow) uses ($fields) {
            return array_combine($fields, $cRow);
        }, $rawData);
于 2012-09-18T19:37:44.640 回答
3

见以下网址

CSV 到关联数组

试试看

逐行遍历 csv 文件,然后插入到数组中,如:

$array = array();
$handle = @fopen("file.csv", "r");
if ($handle) {
    while (($line = fgetcsv($handle, 4096)) !== false) {

       $array[$line[0]][$line[1]][$line[2]] = $line[3];
    }
    if (!feof($handle)) {
        echo "Error: unexpected fgets() fail\n";
    }
    fclose($handle);
}
于 2012-09-18T19:02:46.310 回答