Use PHP code to force download file type_PHP tutorial

WBOY
Release: 2016-07-21 14:53:46
Original
836 people have browsed it

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...
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template