所以我一直在尝试创建一个简单的 csv 文件,如下面的代码,但 csv 文件没有正确创建。它包含我的 .php 文件中的 html 文本。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>CVS File</title>
</head>
<body>
<table width="370" border="0" cellspacing="0" cellpadding="0">
<form action="" method="post" enctype="multipart/form-data" name="form1" id="form1">
<tr>
<td><h1> Ultracom </h1></td>
<td align="right" valign="middle">
<input name="csv" type="file" id="csv" />
<input type="submit" id="btnsubmit" name="btnsubmit" value="Submit" />
</td>
</tr>
<tr>
<td><input type="submit" id="btnedit" name="btnedit" value="Edit" /></td>
<td></td>
</tr>
<tr>
<td><input type="submit" id="btnupdate" name="btnupdate" value="Update" /></td>
<td><input type="submit" id="btncancel" name="btncancel" value="Cancel" /></td>
</tr>
</form>
</table>
<?php
if (isset($_POST['btnupdate'])) {
header('Content-Type: text/csv; charset=utf-8');
header('Content-Disposition: attachment; filename=edited.csv');
$file = fopen("edited.csv","w");
$row = 2;
$a = "a";
$b = "b";
for ($r=0; $r < $row; $r++) {
$rows[$r] = $a.",".$b;
}
foreach ($rows as $details) {
fputcsv($file,explode(',',$details));
}
fclose($file);
}
?>
我的代码有什么问题吗?我的代码似乎与我迄今为止在谷歌上找到的用于创建 csv 文件的其他代码几乎相同。