从本地区域上传文件。 将 csv文件转换为html 。 这是如何用PHP完成的?
$data = file("sample.csv"); //local area file upload ?
foreach ($data as $line) {
$lineArray = explode(";", $line);
list($col1, $col2, $col3, $col4) = $lineArray;
print $col1,$col2,$col3,$col4,;
}
答案 0 :(得分:0)
您可以使用此代码
<?php
echo "<html><body><table>\n\n";
$f = fopen("sample.csv", "r");
while (($line = fgetcsv($f)) !== false) {
echo "<tr>";
foreach ($line as $cell) {
echo "<td>" . htmlspecialchars($cell) . "</td>";
}
echo "</tr>\n";
}
fclose($f);
echo "\n</table></body></html>";