PHP实现文件下载

2018-06-22 04:51:39来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

 1 public function get_download_file()
 2 {
 3       header ( 'Content-Description: File Transfer' );
 4       header ( 'Content-Type: application/octet-stream' );
 5       header ( 'Content-Disposition: attachment; filename=' . basename ( $file ));
 6       header ( 'Content-Transfer-Encoding: binary' );
 7       header ( 'Expires: 0' );
 8       header ( 'Cache-Control: must-revalidate' );
 9       header ( 'Pragma: public' );
10       header ( 'Content-Length: '  .  filesize ( $file ));
11       ob_clean ();
12       flush ();
13       readfile ( $file );
14       exit;
15 }

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:codefirst数据迁移技术,在保留数据库数据下实现对模型的修改并

下一篇:.net core获取服务器本地IP及Request访问端口