当前位置:主页 > 软件编程 > PHP代码 >
时间:2020-12-23 11:57:01 | 栏目:PHP代码 | 点击:次
如下所示:
//下载,添加响应头信息 header('Content-type:application/octet-stream'); header('Content-Disposition:attachment;filename="'.basename($file).'"'); header('Content-Length:'.filesize($file)); readfile($file);