我有CSV文件中的数据。我需要读取文件并将数据放入数组中。我的CSV文件中有5列,如下所示:
CAPRICCIOSA | Tomato, Cheese, Mushrooms | $8.00 | $12.00 | $15.00
MARGHERITA | Tomato, Cheese, Oregano | $7.00 | $11.00 | $13.00
我如何explode()
进入阵列?如果我使用逗号将其分解为数组,它将变为CAPRICCIOA - Tomato - Cheese
,因为我的文本已经有逗号。
如何将其拆分为不同的行,例如MySQL,以便循环显示结果?
我尝试了以下内容:
$file="dish.csv" ;
$file=file_get_contents($file);
$array=explode(",", $file);
答案 0 :(得分:6)
如何使用PHP函数:fgetcsv()
答案 1 :(得分:1)
你应该转向fgetcsv:
<?php
$row = 1;
if (($handle = fopen("test.csv", "r")) !== FALSE) {
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
$num = count($data);
echo "<p> $num fields in line $row: <br /></p>\n";
$row++;
for ($c=0; $c < $num; $c++) {
echo $data[$c] . "<br />\n";
}
}
fclose($handle);
?>
答案 2 :(得分:0)
试试这个:
$fn='dish.csv';
$file_array = file($fn);
foreach ($file_array as $line_number =>&$line)
{
//$line=utf8_encode($line);
$row=explode('|',$line);
echo 'Dish: '.$row[0].'<br>';
$ingredients=explode(',',$row[1]);
echo 'Ingredients:';
echo '<pre>';
print_r($ingredients);
echo '<br><br>';
echo '</pre>';
}