SimpleXML:如何查找顶级元素的子元素数量?

2022-01-10 00:00:00 xml xml-parsing php

如何使用 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);

相关文章