Heim  >  Artikel  >  Backend-Entwicklung  >  如何把返回的xml转成数组. 这个xml的结构第一次接触, google了一翻, 没有找到解决方法

如何把返回的xml转成数组. 这个xml的结构第一次接触, google了一翻, 没有找到解决方法

WBOY
WBOYOriginal
2016-06-23 13:44:50779Durchsuche

内容:

<?xml version='1.0' encoding='UTF-8'?><ns1:getActivityOptionsResponse xmlns:ns1="http://www.ebay.com/marketplace/returns/v1/services"><ns1:ack>Success</ns1:ack><ns1:version>1.1.0</ns1:version><ns1:timestamp>2014-11-21T07:05:54.874Z</ns1:timestamp><ns1:activityOptions>ISSUE_REFUND</ns1:activityOptions></ns1:getActivityOptionsResponse>



请指教,谢谢



回复讨论(解决方案)

你这是带命名空间的 XML,指定一下就可以了

$s =<<< XML<?xml version='1.0' encoding='UTF-8'?><ns1:getActivityOptionsResponse xmlns:ns1="http://www.ebay.com/marketplace/returns/v1/services"><ns1:ack>Success</ns1:ack><ns1:version>1.1.0</ns1:version><ns1:timestamp>2014-11-21T07:05:54.874Z</ns1:timestamp><ns1:activityOptions>ISSUE_REFUND</ns1:activityOptions></ns1:getActivityOptionsResponse>XML;print_r(simplexml_load_string($s, null, 0, 'ns1', true));
SimpleXMLElement Object(    [ack] => Success    [version] => 1.1.0    [timestamp] => 2014-11-21T07:05:54.874Z    [activityOptions] => ISSUE_REFUND)

谢谢你的帮助

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn