本文实例讲述了PHP简单实现文件或图片强制下载的方法。分享给大家供大家参考,具体如下:
PHP;">
//下载
function downregcaseAction() {
$file="upload/regcase.jpg";
if(isfile($file)) {
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=".basename(file));
readfile(file);
exit;
} else {
echo "文件不存在!";
exit;
}
}
更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》、《》、《》及《》
希望本文所述对大家PHP程序设计有所帮助。
原文链接:https://www.f2er.com/php/18326.html