The SimpleXMLElement class

(PHP 5, PHP 7, PHP 8)

简介

Represents an element in an XML document.

类摘要

class SimpleXMLElement implements Stringable, Countable, RecursiveIterator {
/* 方法 */
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
}

更新日志

版本 说明
8.0.0 SimpleXMLElement implements Stringable, Countable, and RecursiveIterator now.

目录