浙江雁荡山 发表于 2017-3-24 06:07:00

php 输出excel

  /**
  * 下载模板
  */ 
  public function download_template()
  {
  $file = "template.xls";
  //设置excel 头
  header("Content-type:application nd.ms-excel");
  header('Content-Disposition: attachment; filename="导入模板.xls"');
  $content = file_get_contents($file);
  echo $content;
  exit();
  }
页: [1]
查看完整版本: php 输出excel