首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

SimpleXMLElement::count

(PHP 5 >= 5.3.0, PHP 7)

SimpleXMLElement :: count - 计算一个元素的子元素

描述

代码语言:javascript
复制
public int SimpleXMLElement::count ( void )

此方法计算元素的子元素数量。

返回值

返回元素的元素数量。

例子

示例#1计算子元素的数量

代码语言:javascript
复制
<?php
$xml?=?<<<EOF
<people>
?<person?name="Person?1">
??<child/>
??<child/>
??<child/>
?</person>
?<person?name="Person?2">
??<child/>
??<child/>
??<child/>
??<child/>
??<child/>
?</person>
</people>
EOF;

$elem?=?new?SimpleXMLElement($xml);

foreach?($elem?as?$person)?{
????printf("%s?has?got?%d?children.\n",?$person['name'],?$person->count());
}
?>

上面的例子将输出:

代码语言:javascript
复制
Person 1 has got 3 children.
Person 2 has got 5 children.

扩展内容

  • SimpleXMLElement :: children() - 查找给定节点的子节点

← SimpleXMLElement::__construct

SimpleXMLElement::getDocNamespaces →

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com