<?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'};