連想配列にインポートする必要がある 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 ファイルに対応しています。このファイルをそのような配列にインポートするにはどうすればよいですか?