php强制下载文件函数
程序员文章站
2024-04-02 16:02:04
本文实例为大家分享了php强制下载文件函数,供大家参考,具体内容如下
public function down()
{
$id = $this->...
本文实例为大家分享了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 '文件不存在!'; } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇: PHP简单判断手机设备的方法