A classe SimpleXMLIterator
(PHP 5 >= 5.1.3, PHP 7, PHP 8)
Introdução
A classe SimpleXMLIterator provê iterações recursivas em todos os nós de um objeto SimpleXMLElement.
Resumo da classe
/* Métodos herdados */
public SimpleXMLElement::__construct(
string
int
bool
string
bool
)
string
$data
,int
$options
= 0,bool
$dataIsURL
= false
,string
$namespaceOrPrefix
= "",bool
$isPrefix
= false
)
public SimpleXMLElement::addAttribute(string
$qualifiedName
, string $value
, ?string $namespace
= null
): voidpublic SimpleXMLElement::addChild(string
$qualifiedName
, ?string $value
= null
, ?string $namespace
= null
): ?SimpleXMLElementpublic SimpleXMLElement::attributes(?string
$namespaceOrPrefix
= null
, bool $isPrefix
= false
): ?SimpleXMLElementpublic SimpleXMLElement::children(?string
}$namespaceOrPrefix
= null
, bool $isPrefix
= false
): ?SimpleXMLElementRegistro de Alterações
Versão | Descrição |
---|---|
8.0.0 | Métodos iteradores (SimpleXMLIterator::hasChildren(), SimpleXMLIterator::getChildren(), SimpleXMLIterator::current(), SimpleXMLIterator::key(), SimpleXMLIterator::next(),SimpleXMLIterator::rewind(), SimpleXMLIterator::valid()) foram movidos para SimpleXMLElement. |
8.0.0 | SimpleXMLIterator implementa Stringable agora. |