Introducción
PHP Manual
PHP Manual»SimpleXML»SimpleXMLElement

La clase SimpleXMLElement

(PHP 5, PHP 7, PHP 8)

Representa un elemento del documento XML.

class SimpleXMLElement implements Stringable, Countable, RecursiveIterator {
/* Métodos */
public function __construct(
    string $data,
    int $options = 0,
    bool $dataIsURL = false,
    string $namespaceOrPrefix = "",
    bool $isPrefix = false
)
public function addAttribute(string $qualifiedName, string $value, ?string $namespace = null): void
public function addChild(string $qualifiedName, ?string $value = null, ?string $namespace = null): ?SimpleXMLElement
public function asXML(?string $filename = null): string|bool
public function attributes(?string $namespaceOrPrefix = null, bool $isPrefix = false): ?SimpleXMLElement
public function children(?string $namespaceOrPrefix = null, bool $isPrefix = false): ?SimpleXMLElement
public function count(): int
public function current(): SimpleXMLElement
public function getDocNamespaces(bool $recursive = false, bool $fromRoot = true): array|false
public function getName(): string
public function getNamespaces(bool $recursive = false): array
public function getChildren(): ?SimpleXMLElement
public function hasChildren(): bool
public function key(): string
public function next(): void
public function registerXPathNamespace(string $prefix, string $namespace): bool
public function rewind(): void
public function __toString(): string
public function valid(): bool
public function xpath(string $expression): array|null|false
}
Versión Descripción
8.4.0 Los métodos get (como SimpleXMLElement::asXML() o SimpleXMLElement::getName()) y convertir un SimpleXMLElement a string ya no rebobinan implícitamente el iterador. El iterador debe ahora ser rebobinado explícitamente, usando SimpleXMLElement::rewind(), cuando sea necesario.
8.0.0 La clase SimpleXMLElement implementa ahora Stringable, Countable y RecursiveIterator.

Tabla de contenidos

To Top