如何使用 PHP 和 SimpleXML 查找 XML 文档中根元素的子元素数量?
How do I find the number of children of the root element in an XML document using PHP and SimpleXML?
DLiKS
如果你使用 PHP 5.3+,你可以使用 SimpleXMLElement::count
If you are using PHP 5.3+ you can use SimpleXMLElement::count
否则,请执行以下操作:
Otherwise, just do somthing like:
$sxe = new SimpleXMLElement($xml);
$kids = $sxe->children();
echo count($kids);
这篇关于SimpleXML:如何查找顶级元素的子元素数量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!