本文实例讲述了php简单实现文件或图片强制下载的方法。分享给大家供大家参考,具体如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//下载
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程序设计有所帮助。