Use PHP to implement a browser click to download the TXT document in a detailed way

Source: Internet
Author: User
Tags readfile

["Note: Other files want to be set as download files, and the method described below is consistent"]since the current browser can already recognize the TXT document format, if only to make a text link to the TXT document, click to open a new window to display the contents of the TXT file, and can not achieve the purpose of click to download. Of course, the solution to this problem can also be renamed TXT file to the browser does not know the file (such as RAR), so that the browser does not recognize the RAR type files, can only let users download. Another way is to use the code to format the document through the header to achieve the purpose of click to download.

the PHP code is as follows:
================================================ ===========
$filename = '/path/'. $_get[' file ']. TXT ';  //file path
header ("Content-type:application/force-download");
header ("content-disposition:attachment; Filename= ". basename ($filename));" Note, the Test experience basename () does not support Chinese "
readfile ($ filename);
===========================================================
brief description:
The first header function sets the value of Content-type to Application/force-download;
The second header function sets the file to be downloaded. Note that the filename here does not include the path of the file name, the value of filename will be clicked after the download pop-up dialog box file name, if the path, pop-up dialog box filename is unknown;
finally through the ReadFile function, the file stream output to the browser, so that the implementation of the TXT file download.

[inadvertently found that if the content is output in this file, the content will be written to the download file]

Use PHP to implement a browser click to download the TXT document in a detailed way

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.