简单PHPexcel

来源:互联网 发布:淘宝商品陈列模块代码 编辑:程序博客网 时间:2024/06/05 22:29
  1. //excel输出
  2. header('Content-Type: application/vnd.ms-execl');
  3. header('Content-Disposition: attachment; filename=sogouMall.xls');
  4. header('Pragma: no-cache');
  5. header('Expires: 0');
  6. echo iconv('UTF-8','GBK',"序号\t串号\t手机型号\t安装省份\t安装时间\t\n");
  7. //参考上一行写就行了【\t另起一列 \n另起一行】
0 0