The SimpleXMLIterator class
(PHP 5 >= 5.1.3, PHP 7)
简介
The SimpleXMLIterator provides recursive iteration over all nodes of a SimpleXMLElement object.
类摘要
/* 方法 */
/* 继承的方法 */
final
public
SimpleXMLElement::__construct (
string
$data
[,
int $options
= 0 [,
bool $data_is_url
= FALSE
[,
string $ns
= "" [,
bool $is_prefix
= FALSE
]]]] )
public
SimpleXMLElement::addAttribute (
string
$name
[,
string $value
[,
string $namespace
]] ) :
void
public
SimpleXMLElement::addChild (
string
$name
[,
string $value
[,
string $namespace
]] ) :
SimpleXMLElement
public
SimpleXMLElement::attributes ([
string
$ns
= NULL
[,
bool $is_prefix
= FALSE
]] ) :
SimpleXMLElement
public
SimpleXMLElement::getDocNamespaces ([
bool
}
$recursive
= FALSE
[,
bool $from_root
= TRUE
]] ) :
array
Table of Contents
- SimpleXMLIterator::current — Returns the current element
- SimpleXMLIterator::getChildren — Returns the sub-elements of the current element
- SimpleXMLIterator::hasChildren — Checks whether the current element has sub elements
- SimpleXMLIterator::key — Return current key
- SimpleXMLIterator::next — Move to next element
- SimpleXMLIterator::rewind — Rewind to the first element
- SimpleXMLIterator::valid — Check whether the current element is valid