首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >原生php文件下载功能

原生php文件下载功能

作者头像
贵哥的编程之路
发布2022-01-20 18:16:17
发布2022-01-20 18:16:17
1.6K0
举报
代码语言:javascript
复制
<?php
header ( 'Content-Description: File Transfer' ); 

header ( 'Content-Type: application/octet-stream' ); 

header ( 'Content-Disposition: attachment; filename=' .$filename); 

header ( 'Content-Transfer-Encoding: binary' ); 

header ( 'Expires: 0' ); 

header ( 'Cache-Control: must-revalidate' ); 

header ( 'Pragma: public' ); 

header ( 'Content-Length: ' . filesize ( $file )); 
readfile($filename);
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022/01/01 ,如有侵权请联系 cloudcommunity@tencent.com 删除
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档