谁能知道我如何在不显示对话框(打开/保存)的情况下强制下载文件。下面的代码是我下载创建的 excel 文件的测试脚本,但出现下载文件的对话框。
$filename ="excelreport.xls";
$contents = "testdata1 \t testdata2 \t testdata3 \t \n";
header('Content-type: application/ms-excel');
header('Content-Disposition: attachment; filename='.$filename);
echo $contents;
我想在没有对话框的情况下自动下载文件并将其保存在指定目录中