XMLReader::moveToElement

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

XMLReader::moveToElement将光标定位到当前属性的父元素

描述

public XMLReader::moveToElement(): bool

将光标移动到当前属性的父元素。

参数

此函数没有参数。

返回值

如果成功,则返回 true,如果失败或调用此方法时未定位在属性上,则返回 false

参见

添加备注

用户贡献的备注 1 备注

3
Sean Colin Ruiz
7 年前
对于像这样的元素:<self_closing attribute="1" />,在您遍历完属性后,isEmptyElement 将返回 FALSE。因此,您需要使用隐式调用 moveToElement(),以便将光标移回父元素并再次使用 isEmptyElement。
To Top