我有这个代码,它在本地工作但不是实时的——它接收来自数据库查询的结果,当前输出只发送到浏览器——而不像本地那样提供下载:
if($_POST['xls'] == 'on'){
$file_type = "vnd.ms-excel";
$file_ending = "xls";
$ttype = date('m-d-Y-H:i:s');
header("Content-Type: application/$file_type");
//header("Content-Type: application/force-download");
//header("Content-Type: application/octet-stream");
//header("Content-Type: application/download");
header("Content-Disposition: attachment; filename=$ttype.$file_ending");
header("Pragma: no-cache");
header("Expires: 0");
}
两台服务器都是 linux,使用 php 5.2.17 运行 cPanel 的实时服务器我不管理 cpanel 服务器,无法升级 php
谢谢