从xml文件获取属性php

时间:2016-08-13 20:51:16

标签: php xml xml-parsing attributes simplexml

<?xml version="1.0" encoding="UTF-8"?>
  <abc-response>
   <error-messages>
    <errors code="302">
         User does not have access to this Product 
    </errors>
  </error-messages>
</abc-response>

我正在使用simplexml_load_string并使用属性函数来获取代码,并且我一直得到一个空值。

 $results = simplexml_load_string($response);

 $errorCode = $results->attributes()->{'errors'};

0 个答案:

没有答案