您的位置:首页 > 编程语言 > PHP开发

php强制下载文件函数

2016-08-24 09:23 856 查看

本文实例为大家分享了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使用PHP实现下载CSS文件中的图片" target=_blank> ? $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 '文件不存在!';
}
}
[/code]

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

您可能感兴趣的文章:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  php 下载文件