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

PHP tutorial. Application example 7_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-13 17:22:43
Original
860 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/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 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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template