标签: php xml simplexml
我有一个api服务,它返回以下类型的xml:
<KidsAges xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <a:int>3</a:int> <a:int>4</a:int> </KidsAges>
现在元素表示房间里有2个孩子。如何在使用Simplexml和PHP时阅读本文。我只想计算元素的数量。
感谢。