php实现浏览器点击下载TXT文档的代码

发布时间:2020-05-04编辑:脚本学堂
本文介绍下,php实现浏览器点击下载txt文件的方法,有具体的例子,有需要的朋友参考下吧。

有时需要为txt文件做链接,并希望点此链接时,直接下载txt文档。

以下的方法,通过header设置文档的格式,实现txt文档点击即可下载。
例子:
 

复制代码 代码示例:
<?php
/**
* txt文档点击下载
* edit www.jb200.com
*/
$filename = '/path/'.$_GET['file'].'.txt'; //文件路径
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=".basename($filename));
readfile($filename);
?>

说明:
第一个header函数设置Content-Type的值为application/force-download;
第二个header函数设置要下载的文件。注意这里的filename是不包含路径的文件名,filename的值将来就是点击下载后弹出对话框里面的文件名,如果带路径的话,弹出对话框的文件名就是未知的;
最后通过readfile函数,将文件流输出到浏览器,这样就实现了txt文件的下载。