码迷,mamicode.com
首页 > Web开发 > 详细

通过 PHP 生成 XML

时间:2019-08-20 16:58:17      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:内容类型   span   注意   john   for   The   服务   header   org   

如需使用 PHP 在服务器上生成 XML 响应,请使用下面的代码:

<?php
header("Content-type:text/xml");
echo "<?xml version=‘1.0‘ encoding=‘ISO-8859-1‘?>";
echo "<note>";
echo "<from>John</from>";
echo "<to>George</to>";
echo "<message>Don‘t forget the meeting!</message>";
echo "</note>";
?>

请注意,响应头部的内容类型必须设置为 "text/xml"。

通过 PHP 生成 XML

标签:内容类型   span   注意   john   for   The   服务   header   org   

原文地址:https://www.cnblogs.com/furuihua/p/11383755.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!