首页  >  文章  >  后端开发  >  请教以下XML字符串要怎么解析得到code和result呢

请教以下XML字符串要怎么解析得到code和result呢

WBOY
WBOY原创
2016-06-13 10:13:11889浏览

请问以下XML字符串要如何解析得到code和result呢?
不是为空就是报错:

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->$xml = '<?xml version="1.0" encoding="utf-8"?><apiresult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://tempuri.org/">  <code>0</code>  <result>短信提交成功</result></apiresult>';$xml = iconv('gbk', 'utf-8', $xml);//转了也不行$dom = simplexml_load_string($xml);$result_code = iconv('utf-8', 'gbk', $dom->code);//结果代码$result_info = iconv('utf-8', 'gbk', $dom->result);//结果信息


------解决方案--------------------
xml里面明明是Code和Result标签,注意第一个字母是大写的。
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn