我有一個CSV文件,我需要導入到關聯數組。數據看起來像這樣:PHP 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文件。我怎樣才能將這個文件導入到這樣的數組中?
看看[fgetcsv](http://php.net/manual/en/function.fgetcsv.php) – clentfort
使用fgetcsv,效果很好! –