我正在尝试使用这个简单的代码通过我的网页下载 csv 文件,但没有成功。
<?PHP
header('Content-Type: application/csv');
header('Content-Disposition: attachment; filename=test.csv');
header('Pragma: no-cache');
echo readfile('test.csv');
?>
错误是“Internet Explorer 在我的网页上找不到“csv_download.php”文件链接
<a href="csv_download.php">Click here to download the "CSV" file</a>
有什么遗漏吗?