Home  >  Article  >  Backend Development  >  Use PHP code to force download file type_PHP tutorial

Use PHP code to force download file type_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 14:53:46831browse

Use PHP code to force download file types. Sometimes some files cannot be opened online, but need to be downloaded after execution. In this case, use this function to solve the problem

function downloadFile($file){
/*Coded by Alessio Delmonti*/
$file_name = $file;
$mime = 'application/force-download';
header(' Pragma: public'); // required
header('Expires: 0'); // no cache
header('Cache-Control: must-revalidate, post-check=0, pre-check=0 ');
header('Cache-Control: private',false);
header('Content-Type: '.$mime);
header('Content-Disposition: attachment; filename=" '.basename($file_name).'"');
header('Content-Transfer-Encoding: binary');
header('Connection: close');
readfile($file_name); // push it out
exit();
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/364768.htmlTechArticleUse PHP code to force download file types. Sometimes some files cannot be opened online, but need to be downloaded after execution. At this time, you can use this function to solve the problem function downlo...
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