search
HomeBackend DevelopmentPHP TutorialAn example of PHP file download code, _PHP tutorial
An example of PHP file download code, _PHP tutorialJul 13, 2016 am 10:20 AM
headerphpcodefunctionsendaccomplishusDownload Documentneed

An example of php file download code,

php file download code

To implement file downloading in PHP, we need to use the header function to send relevant information to the client browser, and at the same time combine it with the filesize function to read the file size and perform the download operation.
To download a simple file, you only need to use the HTML connection tag and specify the URL value of the href attribute as the downloaded file.

File download can only process some MIME type files that the browser cannot recognize by default. For example, when accessing the book.rar file, the browser does not open it directly, but pops up a download prompt box, prompting the user to "Download" or "Open" and other processing methods. However, if you need to download web page files, image files, PHP program script files, etc. with the suffix .html, using this connection form, the file content will be output directly to the browser and the user will not be prompted to download.
In order to improve the security of the file, if you do not want to give a link to the file in the tag, you must send the necessary header information to the browser to notify the browser that the file is about to be downloaded. PHP uses the header() function to send the header information of the web page to the browser. This function receives a string of header information as a parameter. The header information that needs to be sent for file download includes the following three parts, which is completed by calling the header() function three times. Take downloading the picture test.gif as an example. The header information that needs to be sent is as follows:
header('Content-Type:imge/gif'); //Send the header information of the specified file MIME type
header(' Content-Disposition:attachment; filename="test.gif"'); //Send header information describing the file, attachment and file name
header('Content-Length:3390′); //Send the specified file size Information, unit byte

If you use the header() function to send these three lines of header information to the browser, the image test.gif will not be displayed directly in the browser, but the browser will format the file as a download. In the function header(), "Content-Type" specifies the MIME type of the file, "Content_Disposition" is used to describe the file, and the value "attachment; filename="test.gif"" indicates that this is an attachment and specifies the download After the file name, "Content_Length" gives the size of the downloaded file.
After setting the header information, the content of the file needs to be output to the browser for downloading. You can use the file system function in PHP to read the file content and output it directly to the browser. The most convenient way is to use the readfile() function to read the file content and output it directly. Download file test.gif as shown:
$filename = "test.gif";
header('Content-Type:image/gif'); //Specify the download file type
header('Content-Disposition: attachment; filename="'.$filename.'"'); //Specify the description of the downloaded file
header('Content-Length:'.filesize($filename)) ; //Specify the size of the download file

//Read the file content and output it directly for downloading
readfile($filename);
?>

Articles you may be interested in:

  • php file download example code
  • php custom function code to force file download
  • php file download (header function usage)
  • php file download example code
  • When downloading the php header function file, you are prompted to save it directly
  • php file download class that supports breakpoint resumption (source code attached)
  • php large file download code (supports breakpoint resume download)
  • php file download code (compatible with multiple browsers, supports Chinese file names)
  • PHP file download function (supports multiple formats)
  • php file download class (supports multiple file types)
  • Example code for file download using php header function

If you encounter a Chinese name above, it will not download normally. For downloading files with Chinese names, I found another file download example code

header("Content-type:text /html;charset=utf-8");
// $file_name="cookie.jpg";
$file_name="Christmas Carnival.jpg";
//Used to solve the problem that Chinese cannot be displayed The problem
$file_name=iconv("utf-8","gb2312",$file_name);
$file_sub_path=$_SERVER['DOCUMENT_ROOT']."marcofly/phpstudy/down/down/";
$file_path=$file_sub_path.$file_name;
//First determine whether the given file exists or not
if(!file_exists($file_path)){
echo "There is no such file";
return ;
}
$fp=fopen($file_path,"r");
$file_size=filesize($file_path);
//Headers needed to download files
Header("Content-type: application/octet-stream"); ​​
Header("Accept-Ranges: bytes");
Header("Accept-Length:".$file_size);
Header("Content-Disposition: attachment; filename=".$file_name);
$buffer=1024;
$file_count=0;
//Return data to the browser
while(!feof ($fp) && $file_count$file_con=fread($fp,$buffer);
$file_count+=$buffer;
echo $file_con;
}
fclose($fp);
?>
header("Content-type:text/html;charset=utf-8"): When the server responds to the browser's request, it tells the browser to encode The content is displayed in UTF-8 format
About the problem that the file_exists() function does not support Chinese paths: Because the php function is relatively early and does not support Chinese, so if the downloaded file name is in Chinese, it needs to be modified Character encoding conversion, otherwise the file_exists() function cannot recognize it, you can use the iconv() function for encoding conversion (www.jbxue.com Script Academy)
$file_sub_path() I use an absolute path, which is more efficient than a relative path The role of
Header("Content-type: application/octet-stream"): Through this code, the client browser can know the file format returned by the server
Header("Accept-Ranges: bytes" ): Tell the client that the file size returned by the browser is calculated in bytes
Header("Accept-Length:".$file_size): Tell the browser the file size returned
Header( The role of "Content-Disposition: attachment; filename=".$file_name): tells the browser the name of the file returned

The above four Header() are necessary
fclose($fp) can output the last remaining data in the buffer to the disk file and release the file pointer and related buffer

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/866465.htmlTechArticleAn example of php file download code, php file download code php file download we need to use the header function to send Relevant information is given to the client browser, and combined with the file...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),