网站地图    收藏   

主页 > php专栏 > php综合实列 >

php如何简单实现文件或图片强制下载的方法

来源:未知    时间:2016-12-07 09:46 作者:xxadmin 阅读:

[导读] php如何简单实现文件或图片强制下载的方法 //下载functiondownregcaseAction(){$file=upload/regcase.jpg;if(isfile($file)){header(Content-Type:application/force-download);header(Content-Disposition:attachment;filename=.basenam...

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程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论