文件下载方法

来源:互联网 发布:北邮图书馆软件 编辑:程序博客网 时间:2024/05/19 22:48

public function actionFileDownload(){$file = $_POST['file'];$filename = $_POST['filename'];$filetype=strtolower(array_pop(explode('.',$file)));header('Content-type: application/'.$filetype); header('Content-Disposition: attachment; filename="'.$filename.'.'.$filetype.'"'); readfile("$file"); exit(); }


原创粉丝点击