原生php文件下载功能

简介: 原生php文件下载功能
<?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);

在这里插入图片描述

相关文章
|
7天前
|
数据采集 监控 API
使用PHP实现动态代理IP的功能
使用PHP实现动态代理IP的功能
php案例:自己写个数组转换成对象 对象转换成数组的的功能出来吧
php案例:自己写个数组转换成对象 对象转换成数组的的功能出来吧
php案例:自己写个数组转换成对象 对象转换成数组的的功能出来吧