mirror of
https://github.com/php/php-src.git
synced 2024-11-30 21:35:36 +08:00
439 lines
12 KiB
PHP
439 lines
12 KiB
PHP
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
class DOMDocumentType extends DOMNode
|
|
{
|
|
}
|
|
|
|
class DOMCdataSection extends DOMText
|
|
{
|
|
public function __construct(string $data) {}
|
|
}
|
|
|
|
class DOMComment extends DOMCharacterData
|
|
{
|
|
public function __construct(string $data = "") {}
|
|
}
|
|
|
|
interface DOMParentNode
|
|
{
|
|
/** @param DOMNode|string $nodes */
|
|
public function append(...$nodes): void;
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function prepend(...$nodes): void;
|
|
}
|
|
|
|
interface DOMChildNode
|
|
{
|
|
public function remove(): void;
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function before(... $nodes): void;
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function after(...$nodes): void;
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function replaceWith(...$nodes): void;
|
|
}
|
|
|
|
class DOMNode
|
|
{
|
|
/** @return DOMNode|false */
|
|
public function appendChild(DOMNode $node) {}
|
|
|
|
/** @return string|false */
|
|
public function C14N(bool $exclusive = false, bool $withComments = false, ?array $xpath = null, ?array $nsPrefixes = null) {}
|
|
|
|
/** @return int|false */
|
|
public function C14NFile(string $uri, bool $exclusive = false, bool $withComments = false, ?array $xpath = null, ?array $nsPrefixes = null) {}
|
|
|
|
/** @return DOMNode|false */
|
|
public function cloneNode(bool $deep = false) {}
|
|
|
|
/** @return int */
|
|
public function getLineNo() {}
|
|
|
|
/** @return string|null */
|
|
public function getNodePath() {}
|
|
|
|
/** @return bool */
|
|
public function hasAttributes() {}
|
|
|
|
/** @return bool */
|
|
public function hasChildNodes() {}
|
|
|
|
/** @return DOMNode|false */
|
|
public function insertBefore(DOMNode $node, ?DOMNode $child = null) {}
|
|
|
|
/** @return bool */
|
|
public function isDefaultNamespace(string $namespace) {}
|
|
|
|
/** @return bool */
|
|
public function isSameNode(DOMNode $otherNode) {}
|
|
|
|
/** @return bool */
|
|
public function isSupported(string $feature, string $version) {}
|
|
|
|
/** @return string|null */
|
|
public function lookupNamespaceURI(?string $prefix) {}
|
|
|
|
/** @return string|null */
|
|
public function lookupPrefix(string $namespace) {}
|
|
|
|
/** @return void */
|
|
public function normalize() {}
|
|
|
|
/** @return DOMNode|false */
|
|
public function removeChild(DOMNode $child) {}
|
|
|
|
/** @return DOMNode|false */
|
|
public function replaceChild(DOMNode $node, DOMNode $child) {}
|
|
}
|
|
|
|
class DOMNameSpaceNode
|
|
{
|
|
}
|
|
|
|
class DOMImplementation
|
|
{
|
|
/** @return void */
|
|
public function getFeature(string $feature, string $version) {}
|
|
|
|
/** @return bool */
|
|
public function hasFeature(string $feature, string $version) {}
|
|
|
|
/** @return DOMDocumentType|false */
|
|
public function createDocumentType(string $qualifiedName, string $publicId = "", string $systemId = "") {}
|
|
|
|
/** @return DOMDocument|false */
|
|
public function createDocument(?string $namespace = null, string $qualifiedName = "", ?DOMDocumentType $doctype = null) {}
|
|
}
|
|
|
|
class DOMDocumentFragment extends DOMNode implements DOMParentNode
|
|
{
|
|
public function __construct() {}
|
|
|
|
/** @return bool */
|
|
public function appendXML(string $data) {}
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function append(...$nodes): void {}
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function prepend(...$nodes): void {}
|
|
}
|
|
|
|
class DOMNodeList implements IteratorAggregate, Countable
|
|
{
|
|
/** @return int|false */
|
|
public function count() {}
|
|
|
|
public function getIterator(): Iterator {}
|
|
|
|
/** @return DOMNode|null */
|
|
public function item(int $index) {}
|
|
}
|
|
|
|
class DOMCharacterData extends DOMNode implements DOMChildNode
|
|
{
|
|
/** @return bool */
|
|
public function appendData(string $data) {}
|
|
|
|
/** @return string|false */
|
|
public function substringData(int $offset, int $count) {}
|
|
|
|
/** @return bool */
|
|
public function insertData(int $offset, string $data) {}
|
|
|
|
/** @return bool */
|
|
public function deleteData(int $offset, int $count) {}
|
|
|
|
/** @return bool */
|
|
public function replaceData(int $offset, int $count, string $data) {}
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function replaceWith(...$nodes): void {}
|
|
|
|
public function remove(): void {}
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function before(... $nodes): void {}
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function after(...$nodes): void {}
|
|
}
|
|
|
|
class DOMAttr extends DOMNode
|
|
{
|
|
public function __construct(string $name, string $value = "") {}
|
|
|
|
/** @return bool */
|
|
public function isId() {}
|
|
}
|
|
|
|
class DOMElement extends DOMNode implements DOMParentNode, DOMChildNode
|
|
{
|
|
public function __construct(string $qualifiedName, ?string $value = null, string $namespace = "") {}
|
|
|
|
/** @return string */
|
|
public function getAttribute(string $qualifiedName) {}
|
|
|
|
/** @return string */
|
|
public function getAttributeNS(?string $namespace, string $localName) {}
|
|
|
|
/** @return DOMAttr|DOMNamespaceNode|false */
|
|
public function getAttributeNode(string $qualifiedName) {}
|
|
|
|
/** @return DOMAttr|DOMNamespaceNode|null */
|
|
public function getAttributeNodeNS(?string $namespace, string $localName) {}
|
|
|
|
/** @return DOMNodeList */
|
|
public function getElementsByTagName(string $qualifiedName) {}
|
|
|
|
/** @return DOMNodeList */
|
|
public function getElementsByTagNameNS(?string $namespace, string $localName) {}
|
|
|
|
/** @return bool */
|
|
public function hasAttribute(string $qualifiedName) {}
|
|
|
|
/** @return bool */
|
|
public function hasAttributeNS(?string $namespace, string $localName) {}
|
|
|
|
/** @return bool */
|
|
public function removeAttribute(string $qualifiedName) {}
|
|
|
|
/** @return void */
|
|
public function removeAttributeNS(?string $namespace, string $localName) {}
|
|
|
|
/** @return DOMAttr|false */
|
|
public function removeAttributeNode(DOMAttr $attr) {}
|
|
|
|
/** @return DOMAttr|bool */
|
|
public function setAttribute(string $qualifiedName, string $value) {}
|
|
|
|
/** @return void */
|
|
public function setAttributeNS(?string $namespace, string $qualifiedName, string $value) {}
|
|
|
|
/** @return DOMAttr|null|false */
|
|
public function setAttributeNode(DOMAttr $attr) {}
|
|
|
|
/** @return DOMAttr|null|false */
|
|
public function setAttributeNodeNS(DOMAttr $attr) {}
|
|
|
|
/** @return void */
|
|
public function setIdAttribute(string $qualifiedName, bool $isId) {}
|
|
|
|
/** @return void */
|
|
public function setIdAttributeNS(string $namespace, string $qualifiedName, bool $isId) {}
|
|
|
|
/** @return void */
|
|
public function setIdAttributeNode(DOMAttr $attr, bool $isId) {}
|
|
|
|
public function remove(): void {}
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function before(... $nodes): void {}
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function after(...$nodes): void {}
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function replaceWith(...$nodes): void {}
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function append(...$nodes): void {}
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function prepend(...$nodes): void {}
|
|
}
|
|
|
|
class DOMDocument extends DOMNode implements DOMParentNode
|
|
{
|
|
public function __construct(string $version = "1.0", string $encoding = "") {}
|
|
|
|
/** @return DOMAttr|false */
|
|
public function createAttribute(string $localName) {}
|
|
|
|
/** @return DOMAttr|false */
|
|
public function createAttributeNS(?string $namespace, string $qualifiedName) {}
|
|
|
|
/** @return DOMCdataSection|false */
|
|
public function createCDATASection(string $data) {}
|
|
|
|
/** @return DOMComment|false */
|
|
public function createComment(string $data) {}
|
|
|
|
/** @return DOMDocumentFragment|false */
|
|
public function createDocumentFragment() {}
|
|
|
|
/** @return DOMElement|false */
|
|
public function createElement(string $localName, string $value = "") {}
|
|
|
|
/** @return DOMElement|false */
|
|
public function createElementNS(?string $namespace, string $qualifiedName, string $value = "") {}
|
|
|
|
/** @return DOMEntityReference|false */
|
|
public function createEntityReference(string $name) {}
|
|
|
|
/** @return DOMProcessingInstruction|false */
|
|
public function createProcessingInstruction(string $target, string $data = "") {}
|
|
|
|
/** @return DOMText|false */
|
|
public function createTextNode(string $data) {}
|
|
|
|
/** @return DOMElement|null */
|
|
public function getElementById(string $elementId) {}
|
|
|
|
/** @return DOMNodeList */
|
|
public function getElementsByTagName(string $qualifiedName) {}
|
|
|
|
/** @return DOMNodeList */
|
|
public function getElementsByTagNameNS(?string $namespace, string $localName) {}
|
|
|
|
/** @return DOMNode|false */
|
|
public function importNode(DOMNode $node, bool $deep = false) {}
|
|
|
|
/** @return DOMDocument|bool */
|
|
public function load(string $filename, int $options = 0) {}
|
|
|
|
/** @return DOMDocument|bool */
|
|
public function loadXML(string $source, int $options = 0) {}
|
|
|
|
/** @return void */
|
|
public function normalizeDocument() {}
|
|
|
|
/** @return bool */
|
|
public function registerNodeClass(string $baseClass, ?string $extendedClass) {}
|
|
|
|
/** @return int|false */
|
|
public function save(string $filename, int $options = 0) {}
|
|
|
|
#ifdef LIBXML_HTML_ENABLED
|
|
/** @return DOMDocument|bool */
|
|
public function loadHTML(string $source, int $options = 0) {}
|
|
|
|
/** @return DOMDocument|bool */
|
|
public function loadHTMLFile(string $filename, int $options = 0) {}
|
|
|
|
/** @return string|false */
|
|
public function saveHTML(?DOMNode $node = null) {}
|
|
|
|
/** @return int|false */
|
|
public function saveHTMLFile(string $filename) {}
|
|
#endif
|
|
|
|
/** @return string|false */
|
|
public function saveXML(?DOMNode $node = null, int $options = 0) {}
|
|
|
|
#ifdef LIBXML_SCHEMAS_ENABLED
|
|
/** @return bool */
|
|
public function schemaValidate(string $filename, int $flags = 0) {}
|
|
|
|
/** @return bool */
|
|
public function schemaValidateSource(string $source, int $flags = 0) {}
|
|
|
|
/** @return bool */
|
|
public function relaxNGValidate(string $filename) {}
|
|
|
|
/** @return bool */
|
|
public function relaxNGValidateSource(string $source) {}
|
|
#endif
|
|
|
|
/** @return bool */
|
|
public function validate() {}
|
|
|
|
/** @return int|false */
|
|
public function xinclude(int $options = 0) {}
|
|
|
|
/** @return DOMNode|false */
|
|
public function adoptNode(DOMNode $node) {}
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function append(...$nodes): void {}
|
|
|
|
/** @param DOMNode|string $nodes */
|
|
public function prepend(...$nodes): void {}
|
|
}
|
|
|
|
final class DOMException extends Exception
|
|
{
|
|
/** @var int */
|
|
public $code = 0;
|
|
}
|
|
|
|
class DOMText extends DOMCharacterData
|
|
{
|
|
public function __construct(string $data = "") {}
|
|
|
|
/** @return bool */
|
|
public function isWhitespaceInElementContent() {}
|
|
|
|
/**
|
|
* @return bool
|
|
* @alias DOMText::isWhitespaceInElementContent
|
|
*/
|
|
public function isElementContentWhitespace() {}
|
|
|
|
/** @return DOMText|false */
|
|
public function splitText(int $offset) {}
|
|
}
|
|
|
|
class DOMNamedNodeMap implements IteratorAggregate, Countable
|
|
{
|
|
/** @return DOMNode|null */
|
|
public function getNamedItem(string $qualifiedName) {}
|
|
|
|
/** @return DOMNode|null */
|
|
public function getNamedItemNS(?string $namespace, string $localName) {}
|
|
|
|
/** @return DOMNode|null */
|
|
public function item(int $index) {}
|
|
|
|
/** @return int|false */
|
|
public function count() {}
|
|
|
|
public function getIterator(): Iterator {}
|
|
}
|
|
|
|
class DOMEntity extends DOMNode
|
|
{
|
|
}
|
|
|
|
class DOMEntityReference extends DOMNode
|
|
{
|
|
public function __construct(string $name) {}
|
|
}
|
|
|
|
class DOMNotation extends DOMNode
|
|
{
|
|
}
|
|
|
|
class DOMProcessingInstruction extends DOMNode
|
|
{
|
|
public function __construct(string $name, string $value = "") {}
|
|
}
|
|
|
|
#ifdef LIBXML_XPATH_ENABLED
|
|
class DOMXPath
|
|
{
|
|
public function __construct(DOMDocument $document, bool $registerNodeNS = true) {}
|
|
|
|
/** @return mixed */
|
|
public function evaluate(string $expression, ?DOMNode $contextNode = null, bool $registerNodeNS = true) {}
|
|
|
|
/** @return mixed */
|
|
public function query(string $expression, ?DOMNode $contextNode = null, bool $registerNodeNS = true) {}
|
|
|
|
/** @return bool */
|
|
public function registerNamespace(string $prefix, string $namespace) {}
|
|
|
|
/** @return void */
|
|
public function registerPhpFunctions(string|array|null $restrict = null) {}
|
|
}
|
|
#endif
|
|
|
|
function dom_import_simplexml(object $node): ?DOMElement {}
|