您好,有一个示例数据,我想从中提取responseMessage。
`var_dump($ response)会打印出以下内容:
object(SimpleXMLElement)#34 (3) { <br>
["responseMessage"]=><br>
string(25) "Processing was completed."<br>
["responseStatus"]=><br>
string(7) "SUCCESS"<br>
["processInstances"]=><br>
object(SimpleXMLElement)#15 (1) {<br>
["processInstance"]=><br>
object(SimpleXMLElement)#32 (1) {<br>
["id"]=><br>
string(8) "87921091"<br>
}<br>
}<br>
}
现在我正在尝试做这样的事情$response->responseMessage
哪个正在返回
object(SimpleXMLElement)#34 (1) {<br>
[0]=><br>
string(25) "Processing was completed."<br>
} <br>
NB:这是var_dump()
的结果
请帮忙!!我只需要这个responseMessage字符串。
答案 0 :(得分:0)
我认为您需要使用 SimpleXMLElement
示例:
emojiName
使用 SimpleXMLElement
...
<responseMessage>
<responseStatus></responseStatus>
<processInstances></processInstances>
</responseMessage>
希望这对您有所帮助。