Download.php 492 B

1234567891011121314151617181920212223
  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. return download($file_path,$file_url);
  18. }
  19. }