php导出txt文件

来源:互联网 发布:双敏网络精灵 编辑:程序博客网 时间:2024/05/22 12:05
愿为你通往成功路上的垫脚石

php导出txt文件

<?php
//文件名称
$filename=urlencode('未提现信息表').'_'.date('Y-m-dHis');
//设置标头
Header( "Content-type:   application/octet-stream "); 
Header( "Accept-Ranges:   bytes "); 
header( "Content-Disposition:   attachment;   filename=".$filename.'.txt'); 
header( "Expires:   0 "); 
header( "Cache-Control:   must-revalidate,   post-check=0,   pre-check=0 "); 
header( "Pragma:   public ");
//向txt文本中输入的内容
echo "没有数据";
// '/t'制表符 ‘\n\r’换行符linux环境  ’\n‘windos环境
?>
下载代码地址 http://download.csdn.net/detail/a51561/9810751

php导出excel文件下载地址 http://download.csdn.net/detail/a51561/9810738
1 0