php simplexml获取最大值

发布于 2024-11-25 10:34:46 字数 552 浏览 1 评论 0原文

如何从现有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一刻暧昧 2024-12-02 10:34:46

您可以使用 array_map('intval'... 向 max() 提供它“理解”的内容。

<?php
$xml = getDoc();
$ns = $xml->xpath('//blog/post/guid');
$ns = array_map('intval', $ns);
echo max($ns);

function getDoc() {
    return new SimpleXMLElement( <<< eox
<xml>
 <blog name="">
  <post>
   <guid>3</guid>
   <author></author>
   <content>...</content>
  </post>
  <post>
   <guid>1</guid>
   <author></author>
   <content>...</content>
  </post>
  <post>
   <guid>99</guid>
   <author></author>
   <content>...</content>
  </post>
  <post>
   <guid>47</guid>
   <author></author>
   <content>...</content>
  </post>
 </blog>
</xml>
eox
    );
}

You could use array_map('intval'... to feed max() with something it "understands".

<?php
$xml = getDoc();
$ns = $xml->xpath('//blog/post/guid');
$ns = array_map('intval', $ns);
echo max($ns);

function getDoc() {
    return new SimpleXMLElement( <<< eox
<xml>
 <blog name="">
  <post>
   <guid>3</guid>
   <author></author>
   <content>...</content>
  </post>
  <post>
   <guid>1</guid>
   <author></author>
   <content>...</content>
  </post>
  <post>
   <guid>99</guid>
   <author></author>
   <content>...</content>
  </post>
  <post>
   <guid>47</guid>
   <author></author>
   <content>...</content>
  </post>
 </blog>
</xml>
eox
    );
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文