gpt4 book ai didi

php强制下载xml

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:52:55 25 4
gpt4 key购买 nike

我正在动态创建一个 xml 文件。当用户生成此文件时,我希望它打开一个下载文件对话框,其中包含生成的内容。没有实际的文件,因为它只是通过 php 生成的。关于如何执行此操作的任何想法?

最佳答案

这对我有用。在 readfile('newfile.xml'); 中确保正确提供文件路径。这个 php 页面是从一个带有 anchor 标记的 html 页面调用的,上面写着 - 下载:

<?php 
header('Content-disposition: attachment; filename="newfile.xml"');
header('Content-type: "text/xml"; charset="utf8"');
readfile('newfile.xml');
?>

来源:How do I force the browser to download a file to disk instead of playing or displaying it?

关于php强制下载xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2696500/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com