您的位置:首页 > 编程语言 > PHP开发

PHP在线生成txt文件下载

2013-07-16 15:35 459 查看
初学php,找到一个php在线生成txt文件,平且下载的代码,留着以后自己用


<?php
$str = 'txt内容';
$filename = '文档名称.txt';
header("Content-type: text/plain");
header("Accept-Ranges: bytes");
header("Content-Disposition: attachment; filename=".$filename);
header("Cache-Control: must-revalidate, post-check=0,pre-check=0" );
header("Pragma: no-cache" );
header("Expires: 0" );
exit($str);
?>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  php txt在线生成