|
|
@@ -156,4 +156,17 @@ class CsController extends PublicController
|
|
|
exit;
|
|
|
}
|
|
|
|
|
|
+ //下载文件 shish 20210922
|
|
|
+ public function actionExcel()
|
|
|
+ {
|
|
|
+ $filePath = './priceTable/12715/09-22.xls';
|
|
|
+ $file=fopen($filePath,"r");
|
|
|
+ header("Content-Type: application/octet-stream");
|
|
|
+ header("Accept-Ranges: bytes");
|
|
|
+ header("Accept-Length: ".filesize($filePath));
|
|
|
+ header("Content-Disposition: attachment; filename=2.xls");
|
|
|
+ echo fread($file,filesize($filePath));
|
|
|
+ fclose($file);
|
|
|
+ }
|
|
|
+
|
|
|
}
|