123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- function simplexml_load_file(string $filename, ?string $class_name = SimpleXMLElement::class, int $options = 0, string $namespace_or_prefix = "", bool $is_prefix = false): SimpleXMLElement|false {}
- function simplexml_load_string(string $data, ?string $class_name = SimpleXMLElement::class, int $options = 0, string $namespace_or_prefix = "", bool $is_prefix = false): SimpleXMLElement|false {}
- function simplexml_import_dom(SimpleXMLElement|DOMNode $node, ?string $class_name = SimpleXMLElement::class): ?SimpleXMLElement {}
- class SimpleXMLElement implements Stringable, Countable, RecursiveIterator
- {
-
- public function xpath(string $expression): array|null|false {}
-
- public function registerXPathNamespace(string $prefix, string $namespace): bool {}
-
- public function asXML(?string $filename = null): string|bool {}
-
- public function saveXML(?string $filename = null): string|bool {}
-
- public function getNamespaces(bool $recursive = false): array {}
-
- public function getDocNamespaces(bool $recursive = false, bool $fromRoot = true): array|false {}
-
- public function children(?string $namespaceOrPrefix = null, bool $isPrefix = false): ?SimpleXMLElement {}
-
- public function attributes(?string $namespaceOrPrefix = null, bool $isPrefix = false): ?SimpleXMLElement {}
- public function __construct(string $data, int $options = 0, bool $dataIsURL = false, string $namespaceOrPrefix = "", bool $isPrefix = false) {}
-
- public function addChild(string $qualifiedName, ?string $value = null, ?string $namespace = null): ?SimpleXMLElement {}
-
- public function addAttribute(string $qualifiedName, string $value, ?string $namespace = null): void {}
-
- public function getName(): string {}
- public function __toString(): string {}
-
- public function count(): int {}
-
- public function rewind(): void {}
-
- public function valid(): bool {}
-
- public function current(): SimpleXMLElement {}
-
- public function key(): string {}
-
- public function next(): void {}
-
- public function hasChildren(): bool {}
-
- public function getChildren(): ?SimpleXMLElement {}
- }
- class SimpleXMLIterator extends SimpleXMLElement
- {
- }
|