沃梦达 / 编程问答 / php问题 / 正文

让用户下载一个 XML 文件

Let user download a XML file(让用户下载一个 XML 文件)

本文介绍了让用户下载一个 XML 文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 PHP 中准备了一个 XML 字符串,我想让用户下载一个 XML 文件中的字符串.

I have prepared an XML string in PHP and I would like to let the user download the string in an XML file.

是否可以在不将 xml 文件物理保存到服务器的情况下为用户提供下载(例如 text.xml)?

Is it possible to offer the user the download (e.g. text.xml) without physically saving the xml file to the server?

推荐答案

<?php
header('Content-type: text/xml');
header('Content-Disposition: attachment; filename="text.xml"');

echo $xml_contents;

这篇关于让用户下载一个 XML 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:让用户下载一个 XML 文件

基础教程推荐