Home > Backend Development > PHP Tutorial > PHP tutorial. Application example 6_PHP tutorial

PHP tutorial. Application example 6_PHP tutorial

WBOY
Release: 2016-07-13 17:22:41
Original
691 people have browsed it

PHP implements safe file download
The procedure is as follows:
 $file_name = "info_check.exe";
 $file_dir = "/public/www/download/";
 if (!file_exists($file_dir . $file_name)) { //Check whether the file exists
echo "File not found";
exit;
} else {
$file = fopen($file_dir . $file_name,"r" ); //Open the file
// Enter the file tag
Header("Content-type: application/octet-stream"); ​​
Header("Accept-Ranges: bytes");
Header ("Accept-Length: ".filesize($file_dir . $file_name));
Header("Content-Disposition: attachment; filename=" . $file_name);
//Output file content
echo fread($file,filesize($file_dir . $file_name));
fclose($file);
exit;}
And if the file path is an "http" or "ftp" URL, the source The code will change slightly, the procedure is as follows:
 $file_name = "info_check.exe";
 $file_dir = "www.easycn.net/";
 $file = @ fopen($file_dir . $file_name ,"r");


if (!$file) {
echo "File not found";
} else {
Header("Content-type: application/octet- stream"); ​​
Header("Content-Disposition: attachment; filename=" . $file_name);
while (!feof ($file)) {
echo fread($file,50000);
 }
 fclose ($file);
 }
 This way you can use PHP to directly output the file

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/532313.htmlTechArticlePHP implements safe file download procedure as follows: $file_name = info_check.exe; $file_dir = /public/www/download /; if (!file_exists($file_dir . $file_name)) { //Check whether the file exists...
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