标签:
在Reponse.php文件中添加方法xml();public static function xml(){ header(‘Content-type: text/xml‘); $xml = "<?xml version=‘1.0‘ encoding = ‘UTF-8‘?>\n"; $xml .="<root>\n"; $xml .="<code>200</code>\n"; $xml .="<message>数据返回成功</message>\n"; $xml .="<data>\n"; $xml .="<id>1</id>\n"; $xml .="<name>singwa</name>\n"; $xml .="</data>\n"; $xml .="</root>"; echo $xml; }
<?php require_once(‘./Response.php‘); Response::xml(); ?>
标签:
原文地址:http://my.oschina.net/appleliu/blog/516157