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

PHP tutorial. Application example 7_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:22:43814browse

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