首页 > 代码库 > php导出内容到txt并自动弹出下载文件

php导出内容到txt并自动弹出下载文件

php将内容保存到txt文件中,并自动弹出下载文件窗口的方法:

技术分享

$id=array(‘我爱学习网http://www.5ixuexiwang.com‘,‘汇享在线工具箱http://tool.huixiang360.com‘);
header("Content-type:application/octet-stream");
header("Accept-Ranges:bytes");
header("Content-Disposition:attachment;filename=".‘id列表_‘.date("YmdHis").".txt");
header("Expires: 0");
header("Cache-Control:must-revalidate,post-check=0,pre-check=0");
header("Pragma:public");
echo implode(",",$id);

 

php导出内容到txt并自动弹出下载文件