php 实现文本下载
$file_name="a.txt"; //Windows PATH; $file_path=dirname(__FILE__).'\\' . $file_name; //下载文件需要用到的头 Header("Content-type: application/octet-stream"); Header("Content-Disposition: attachment; filename=".$file_name); Header("Accept-Length: ".filesize($file_path)); //首先要判断给定的文件存在与否 if(!file_exists($file_path)){ echo "没有该文件文件"; return ; } readfile($file_path);
设置好header后,(header的含义网上有)
需要做的一件事,是关闭迅雷的下载监听(或者其他类似的下载浏览器)
然后重新测试你的代码
相关推荐
zyyjay 2020-11-09
xuebingnan 2020-11-05
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
Noneyes 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28
wwwsurfphpseocom 2020-10-28
diskingchuan 2020-10-23
savorTheFlavor 2020-10-23