TypechoJoeTheme

至尊技术网

统计
登录
用户名
密码
/
注册
用户名
邮箱

悠悠楠杉

网站页面

PHP生成文件并下载文件

2022-11-04
/
0 评论
/
702 阅读
/
正在检测是否收录...
11/04
<?php
header("Content-Type: application/octet-stream");
$filename = "1.txt";
$content = '这里是需要生成文件的内容';
$ua = $_SERVER["HTTP_USER_AGENT"];
$encoded_filename = urlencode($filename);
$encoded_filename = str_replace("+", "%20", $encoded_filename);
if (preg_match("/MSIE/", $ua)) {
    header('Content-Disposition:  attachment; filename="' . $encoded_filename . '"');
} else if (preg_match("/Firefox/", $ua)) {
    header('Content-Disposition: attachment; filename*="' .  $filename . '"');
} else {
    header('Content-Disposition: attachment; filename="' .  $filename . '"');
}
echo $content;

经验PHP生成文件
朗读
赞(0)
版权属于:

至尊技术网

本文链接:

https://www.zzwws.cn/archives/6367/(转载时请注明本文出处及文章链接)

评论 (0)