欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP导出excil报表

程序员文章站 2024-01-08 18:08:47
...
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导出excil报表
  • 专题推荐

    上一篇:

    下一篇: