where("id=$id and status=1")->find(); !$data && exit; $filename = iconv('utf-8','gbk',$data['filename']); $s" />

php强制下载文件函数

 2025-01-16  阅读 272  评论 8  点赞 410

摘要:本文实例为大家分享了php强制下载文件函数,供大家参考,具体内容如下 public function down() { $id = $this->_get('id'); $m = m("downloads"); $data=$m->where("id=$id and status=1")->find(); !$data && exit; $filename = iconv('utf-8','gbk',$data['filename']); $s

本文实例为大家分享了php强制下载文件函数,供大家参考,具体内容如下

php强制下载文件函数

public function down()

{
  $id = $this->_get('id');
  $m = m("downloads");
  $data=$m->where("id=$id and status=1")->find();
  !$data && exit;
  $filename = iconv('utf-8','gbk',$data['filename']);
  $savename = $data['savename']; 
  $myfile = $data[url] ? $data[url] : 'uploads/file/'.$savename;
  if(file_exists($myfile)){
    $m->where("id=$id")->setinc('downloads');
    $file = @ fopen($myfile, "r");
    header("content-type: application/octet-stream");
    header("content-disposition: attachment; filename=" .$filename );
    while (!feof($file)) {
    echo fread($file, 50000);
    }
    fclose($file);
    exit;
  }else{
    echo '文件不存在!';

  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。


标签:phpphp教程

评论列表:

  •   tg2087002654
     发布于 15天前回复该评论
  • 不错,学习了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0291秒, 内存占用1.94 MB, 访问数据库30次

冀ICP备19034377号