1

我正在尝试使用这个简单的代码通过我的网页下载 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>

有什么遗漏吗?

4

1 回答 1

3

您的 PHP 文件不在您期望的 URL 上。尽可能设置完整路径:

<a href="/csv_download.php">...
于 2012-09-13T19:49:48.873 回答