(无版本信息可用,可能只在 Git 中)
SimpleXMLElement::hasChildren — 检查当前元素是否具有子元素
在 PHP 8.0 之前,SimpleXMLElement::hasChildren() 仅在子类 SimpleXMLIterator 上声明。
此方法检查当前 SimpleXMLElement 元素是否具有子元素。
此函数没有参数。
示例 #1 检查当前元素是否具有子元素
<?php
$xml = <<<XML
<books>
<book>
<title>PHP Basics</title>
<author>Jim Smith</author>
</book>
<book>XML basics</book>
</books>
XML;
$xmlElement = new SimpleXMLElement($xml);
for ($xmlElement->rewind(); $xmlElement->valid(); $xmlElement->next()) {
if ($xmlElement->hasChildren()) {
var_dump($xmlElement->current());
}
}
?>
上面的示例将输出
object(SimpleXMLElement)#2 (2) { ["title"]=> string(10) "PHP Basics" ["author"]=> string(9) "Jim Smith" }