我的服务器上有一个生成的 xls 文件,我想将其推送到客户端进行下载,但似乎无法正常工作。这是我到目前为止所拥有的:
$xlsFile = 'test.xls';
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");;
header("Content-Disposition: attachment;filename=$xlsFile");
header("Content-Transfer-Encoding: binary ");
exit();
我的excel文件是正确的,如果我从服务器打开它就可以打开,但是我怎样才能把这个文件推送到客户端下载呢?