是否可以向用户提供下载(例如text.xml),而不会将xml文件物理保存到服务器?
<?PHP header('Content-type: text/xml'); header('Content-Disposition: attachment; filename="text.xml"'); echo $xml_contents;