SimpleXMLElement::hasChildren

(无版本信息可用,可能只在 Git 中)

SimpleXMLElement::hasChildren检查当前元素是否具有子元素

描述

public SimpleXMLElement::hasChildren(): bool
警告

在 PHP 8.0 之前,SimpleXMLElement::hasChildren() 仅在子类 SimpleXMLIterator 上声明。

此方法检查当前 SimpleXMLElement 元素是否具有子元素。

参数

此函数没有参数。

返回值

如果当前元素具有子元素,则为 true,否则为 false

示例

示例 #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"
}

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top