Browse Source

sunguidong

zhangguidong 2 years ago
parent
commit
fff23caecc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      application/common.php

+ 1 - 1
application/common.php

@@ -48,7 +48,7 @@ function sendExcel($title='文件',$field=[],$list=[]){
     header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
     header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
     header('Cache-Control: max-age=0'); //禁止缓存
-    $PHPWriter->save('excel_log/'.$title."xls"); //输出到浏览器
+    $PHPWriter->save('excel_log/'.$title.".xls"); //输出到浏览器
 }
 function get_area($id){
     $add = Db::name('q_area')->where('id', $id)->value('name');