(无版本信息可用,可能仅在 Git 中)
SimpleXMLElement::key — 返回当前键
此函数没有参数。
返回当前 SimpleXMLElement 对象引用的元素的 XML 标签名称。
如果失败,则抛出 Error。
示例 #1 获取当前 XML 标签键
<?php
$xmlElement = new SimpleXMLElement('<books><book>PHP basics</book><book>XML basics</book></books>');
echo var_dump($xmlElement->key());
$xmlElement->rewind(); // rewind to the first element
echo var_dump($xmlElement->key());
?>
上面的例子将输出
bool(false) string(4) "book"