["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