Download.php 786 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\mobile\controller;
  3. use app\mobile\MobileBaseController;
  4. class Download extends MobileBaseController
  5. {
  6. public function index()
  7. {
  8. return view();
  9. }
  10. public function down()
  11. {
  12. $file_url = input('file_url', '');
  13. $file_path = public_path('static/mobile/download') . $file_url;
  14. if (!file_exists($file_path)) {
  15. jump('文件不存在或已过期!');
  16. }
  17. $file_name = ['1.pdf' => '晋江市党建引领基层网格管理工作文件汇编.pdf', '2.doc' => '社会保险知识问答.doc', '3.docx' => '泉州市城乡居民基本医保待遇政策.docx', '4.doc' => '晋江市基层计生协会业务工作培训材料.doc'];
  18. return download($file_path, $file_name[$file_url]);
  19. }
  20. }