PHP count() 函数
Posted 佰草伐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP count() 函数相关的知识,希望对你有一定的参考价值。
计算 car 节点的子节点个数:
<?php $xml=<<<XML <cars> <car name="Volvo"> <child/> <child/> <child/> <child/> </car> <car name="BMW"> <child/> <child/> </car> </cars> XML; $elem=new SimpleXMLElement($xml); foreach ($elem as $car) { printf("%s has %d children.<br>", $car[‘name‘], $car->count()); } ?>
运行实例 »
定义和用法
count() 函数计算指定节点的子节点个数。
语法
count();
以上是关于PHP count() 函数的主要内容,如果未能解决你的问题,请参考以下文章