PHP导出excil报表
PHP导出Excel格式文件(xls),只需给PHP文件加一个文件头,filename 就是导出的xls文件名,当你点击这个文件的URL时,就会提示你下载xls文件了
header("Content-Type: application/vnd.ms-execl");
header("Content-Disposition: attachment; filename=info.xls");
header("Pragma: no-cache");
header("Expires:0");
例子:
header("Content-Type: application/vnd.ms-execl");
header("Content-Disposition: attachment; filename=info.xls");
header("Pragma: no-cache");
header("Expires:0");
require_once(dirname(__FILE__)."/../include/config_base.php");
require_once(dirname(__FILE__)."/../dede/config.php");
require_once(dirname(__FILE__)."/../include/pub_datalist.php");
$dsql = new DedeSql(false);
echo "订阅日期"."\t";
echo "订阅内容"."\t";
echo "姓名"."\t";
$dsql->SetQuery("Select * from `TableName` order by `id` desc");
$dsql->Execute();
$i = 1;
while($row = $dsql->GetArray()){
echo $row['uTime']."\t";
echo $row['uCont']."\t";
echo $row['uName']."\t";
$i++;
}?>
2014-04-04
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论