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

php导出xls文件的方法

程序员文章站 2023-12-22 12:56:16
...
  1. header("content-type: application/vnd.ms-excel");
  2. header("content-disposition: attachment; filename=example.xls");
  3. //注意下面的head必须,charset必须跟你将要输出的内容的编码一致,否则用excel打开时,可能得到的是乱码。
  4. echo
  5. php output excel example
  6. 姓名 编号 性别 生日 城市
    奥运 9527 2008-08-08 北京
  7. eot;
  8. ?>
复制代码

上一篇:

下一篇: