php simplexml获取最大值
如何从现有 xml 文件 (SimpleXml) 中获取最高的现有 guid 值。
xml-结构示例:
<xml blabla>
<blog name="">
<post>
<guid>3</guid>
<author></author>
<content>...</content>
</post>
<post>
<guid>1</guid>
<author></author>
<content>...</content>
</post>
</blog>
我尝试了以下操作($xml 是一个 SimpleXml 对象) max($xml->xpath(/blog/post/guid)); 但这似乎不是数组...
有什么建议吗?有没有办法根据 xpath 处理它?我的谷歌搜索没有成功。
How is it possible to get the highest existing guid value from an existing xml file (SimpleXml).
xml-structure example:
<xml blabla>
<blog name="">
<post>
<guid>3</guid>
<author></author>
<content>...</content>
</post>
<post>
<guid>1</guid>
<author></author>
<content>...</content>
</post>
</blog>
I tried the following ($xml is an SimpleXml Object)
max($xml->xpath(/blog/post/guid));
but this seems to be no array...
any suggestions? Is there an way to handle it per xpath? My google search wasn't successful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 array_map('intval'... 向 max() 提供它“理解”的内容。
You could use array_map('intval'... to feed max() with something it "understands".