把数组写进csv文件中:
$file = fopen('write.csv','a+b');
$data = array(
array('id'=>1,'name'=>2),
array('id'=>2,'name'=>3)
);
foreach ($data as $value){
fputcsv($file,$value);
}
fclose( $file);
运行成功后
从该文件中读取数据:
$file = fopen('write.csv','r');
while ($data = fgetcsv($file)) { //每次读取CSV里面的一行内容
//print_r($data); //此为一个数组,要获得每一个数据,访问数组下标即可
$goods_list[] = $data;
}
var_dump($goods_list);
fclose($file);