我以前从未使用过 cvs,所以请多多包涵。
我已经用以下代码整齐地打印了它。现在,我想做的是,这个文件的第 4 列包含一个数字。我希望能够将那个数字或实际上单元格 2-4 链接到与该数字对应的图像。
(即 XHS2 链接到 /images/2.jpg PNM3 链接到 /images/3.jpg ...)
我可以这样做吗?
<?Php
echo "<html><body><table border=1>";
$f = fopen("file.csv", "r");
$fr = fread($f, filesize("file.csv"));
fclose($f);
$lines = array();
$lines = explode("\r\n",$fr); // IMPORTANT the delimiter here just the "new line" \r\n, use what u need instead of...
for($i=0;$i<count($lines);$i++)
{
echo "<tr>";
$cells = array();
$cells = explode(",",$lines[$i]); // use the cell/row delimiter what u need!
for($k=0;$k<count($cells);$k++)
{
echo "<td>".$cells[$k]."</td>";
}
// for k end
echo "</tr>";
}
// for i end
echo "</table></body></html>";
?>