Home  >  Article  >  Backend Development  >  How to implement forced download file function in php

How to implement forced download file function in php

墨辰丷
墨辰丷Original
2018-06-01 15:02:591357browse

This article mainly introduces the PHP forced download file function in detail, which has certain reference value. Interested friends can refer to it

The specific content is as follows

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 '文件不存在!';

  }
}

Summary : The above is the entire content of this article, I hope it will be helpful to everyone's study.

Related recommendations:

php Detailed graphic and text explanation of session invalid analysis data

php Detailed explanation of session invalid analysis data collection

PHP search query function implementation

The above is the detailed content of How to implement forced download file function in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn