侧边栏壁纸
博主昵称
流苏小筑

步伐虽小,密而不止

PHP自定义函数(15)--- PHP强制下载文件

2019年05月13日 236阅读 0评论 0点赞
function download($filename){ 
    if ((isset($filename))&&(file_exists($filename))){ 
       header("Content-length: ".filesize($filename)); 
       header('Content-Type: application/octet-stream'); 
       header('Content-Disposition: attachment; filename="' . $filename . '"'); 
       readfile("$filename"); 
    } else { 
       echo "Looks like file does not exist!"; 
    } 
}
0

—— 评论区 ——

昵称
邮箱
网址
取消
博主栏壁纸
博主头像 流苏小筑

步伐虽小,密而不止

135 文章数
27 标签数
16 评论量