|
php-internal-docs 8.4.8
Unofficial docs for php/php-src
|
Public Member Functions | |
| __construct (string $version="1.0", string $encoding="") | |
| createAttribute (string $localName) | |
| createAttributeNS (?string $namespace, string $qualifiedName) | |
| createCDATASection (string $data) | |
| createComment (string $data) | |
| createDocumentFragment () | |
| createElement (string $localName, string $value="") | |
| createElementNS (?string $namespace, string $qualifiedName, string $value="") | |
| createEntityReference (string $name) | |
| createProcessingInstruction (string $target, string $data="") | |
| createTextNode (string $data) | |
| getElementById (string $elementId) | |
| getElementsByTagName (string $qualifiedName) | |
| getElementsByTagNameNS (?string $namespace, string $localName) | |
| importNode (DOMNode $node, bool $deep=false) | |
| load (string $filename, int $options=0) | |
| loadXML (string $source, int $options=0) | |
| normalizeDocument () | |
| registerNodeClass (string $baseClass, ?string $extendedClass) | |
| save (string $filename, int $options=0) | |
| loadHTML (string $source, int $options=0) | |
| loadHTMLFile (string $filename, int $options=0) | |
| saveHTML (?DOMNode $node=null) | |
| saveHTMLFile (string $filename) | |
| saveXML (?DOMNode $node=null, int $options=0) | |
| schemaValidate (string $filename, int $flags=0) | |
| schemaValidateSource (string $source, int $flags=0) | |
| relaxNGValidate (string $filename) | |
| relaxNGValidateSource (string $source) | |
| validate () | |
| xinclude (int $options=0) | |
| adoptNode (DOMNode $node) | |
| append (... $nodes) | |
| prepend (... $nodes) | |
| replaceChildren (... $nodes) | |
Public Member Functions inherited from DOMNode | |
| appendChild (DOMNode $node) | |
| C14N (bool $exclusive=false, bool $withComments=false, ?array $xpath=null, ?array $nsPrefixes=null) | |
| C14NFile (string $uri, bool $exclusive=false, bool $withComments=false, ?array $xpath=null, ?array $nsPrefixes=null) | |
| cloneNode (bool $deep=false) | |
| getLineNo () | |
| getNodePath () | |
| hasAttributes () | |
| hasChildNodes () | |
| insertBefore (DOMNode $node, ?DOMNode $child=null) | |
| isDefaultNamespace (string $namespace) | |
| isSameNode (DOMNode $otherNode) | |
| isEqualNode (?DOMNode $otherNode) | |
| isSupported (string $feature, string $version) | |
| lookupNamespaceURI (?string $prefix) | |
| lookupPrefix (string $namespace) | |
| normalize () | |
| removeChild (DOMNode $child) | |
| replaceChild (DOMNode $node, DOMNode $child) | |
| contains (DOMNode|DOMNameSpaceNode|null $other) | |
| getRootNode (?array $options=null) | |
| compareDocumentPosition (DOMNode $other) | |
| __sleep () | |
| __wakeup () | |
Definition at line 853 of file php_dom.stub.php.
| DOMDocument::__construct | ( | string | $version = "1.0", |
| string | $encoding = "" ) |
Definition at line 950 of file php_dom.stub.php.
| DOMDocument::adoptNode | ( | DOMNode | $node | ) |
@tentative-return-type
Definition at line 1053 of file php_dom.stub.php.
| DOMDocument::append | ( | ... | ) |
| DOMNode | string | $nodes | @implementation-alias DOMElement\append |
Implements DOMParentNode.
Definition at line 1059 of file php_dom.stub.php.
| DOMDocument::createAttribute | ( | string | $localName | ) |
Definition at line 953 of file php_dom.stub.php.
| DOMDocument::createAttributeNS | ( | ?string | $namespace, |
| string | $qualifiedName ) |
Definition at line 956 of file php_dom.stub.php.
| DOMDocument::createCDATASection | ( | string | $data | ) |
Definition at line 959 of file php_dom.stub.php.
| DOMDocument::createComment | ( | string | $data | ) |
@tentative-return-type
Definition at line 962 of file php_dom.stub.php.
| DOMDocument::createDocumentFragment | ( | ) |
@tentative-return-type
Definition at line 965 of file php_dom.stub.php.
| DOMDocument::createElement | ( | string | $localName, |
| string | $value = "" ) |
Definition at line 968 of file php_dom.stub.php.
| DOMDocument::createElementNS | ( | ?string | $namespace, |
| string | $qualifiedName, | ||
| string | $value = "" ) |
Definition at line 971 of file php_dom.stub.php.
| DOMDocument::createEntityReference | ( | string | $name | ) |
Definition at line 974 of file php_dom.stub.php.
| DOMDocument::createProcessingInstruction | ( | string | $target, |
| string | $data = "" ) |
Definition at line 977 of file php_dom.stub.php.
| DOMDocument::createTextNode | ( | string | $data | ) |
@tentative-return-type
Definition at line 980 of file php_dom.stub.php.
| DOMDocument::getElementById | ( | string | $elementId | ) |
@tentative-return-type
Definition at line 983 of file php_dom.stub.php.
| DOMDocument::getElementsByTagName | ( | string | $qualifiedName | ) |
@tentative-return-type @implementation-alias DOMElement\getElementsByTagName
Definition at line 989 of file php_dom.stub.php.
| DOMDocument::getElementsByTagNameNS | ( | ?string | $namespace, |
| string | $localName ) |
@tentative-return-type @implementation-alias DOMElement\getElementsByTagNameNS
Definition at line 995 of file php_dom.stub.php.
| DOMDocument::importNode | ( | DOMNode | $node, |
| bool | $deep = false ) |
Definition at line 998 of file php_dom.stub.php.
| DOMDocument::load | ( | string | $filename, |
| int | $options = 0 ) |
@tentative-return-type
Definition at line 1001 of file php_dom.stub.php.
| DOMDocument::loadHTML | ( | string | $source, |
| int | $options = 0 ) |
@tentative-return-type
Definition at line 1017 of file php_dom.stub.php.
| DOMDocument::loadHTMLFile | ( | string | $filename, |
| int | $options = 0 ) |
@tentative-return-type
Definition at line 1020 of file php_dom.stub.php.
| DOMDocument::loadXML | ( | string | $source, |
| int | $options = 0 ) |
@tentative-return-type
Definition at line 1004 of file php_dom.stub.php.
| DOMDocument::normalizeDocument | ( | ) |
@tentative-return-type
Definition at line 1007 of file php_dom.stub.php.
| DOMDocument::prepend | ( | ... | ) |
| DOMNode | string | $nodes | @implementation-alias DOMElement\prepend |
Implements DOMParentNode.
Definition at line 1065 of file php_dom.stub.php.
| DOMDocument::registerNodeClass | ( | string | $baseClass, |
| ?string | $extendedClass ) |
@tentative-return-type
Definition at line 1010 of file php_dom.stub.php.
| DOMDocument::relaxNGValidate | ( | string | $filename | ) |
@tentative-return-type
Definition at line 1040 of file php_dom.stub.php.
| DOMDocument::relaxNGValidateSource | ( | string | $source | ) |
@tentative-return-type
Definition at line 1043 of file php_dom.stub.php.
| DOMDocument::replaceChildren | ( | ... | ) |
| DOMNode | string | $nodes |
Implements DOMParentNode.
Definition at line 1068 of file php_dom.stub.php.
| DOMDocument::save | ( | string | $filename, |
| int | $options = 0 ) |
@tentative-return-type
Definition at line 1013 of file php_dom.stub.php.
| DOMDocument::saveHTML | ( | ?DOMNode | $node = null | ) |
@tentative-return-type
Definition at line 1023 of file php_dom.stub.php.
| DOMDocument::saveHTMLFile | ( | string | $filename | ) |
@tentative-return-type
Definition at line 1026 of file php_dom.stub.php.
| DOMDocument::saveXML | ( | ?DOMNode | $node = null, |
| int | $options = 0 ) |
@tentative-return-type
Definition at line 1030 of file php_dom.stub.php.
| DOMDocument::schemaValidate | ( | string | $filename, |
| int | $flags = 0 ) |
@tentative-return-type
Definition at line 1034 of file php_dom.stub.php.
| DOMDocument::schemaValidateSource | ( | string | $source, |
| int | $flags = 0 ) |
@tentative-return-type
Definition at line 1037 of file php_dom.stub.php.
| DOMDocument::validate | ( | ) |
@tentative-return-type
Definition at line 1047 of file php_dom.stub.php.
| DOMDocument::xinclude | ( | int | $options = 0 | ) |
@tentative-return-type
Definition at line 1050 of file php_dom.stub.php.
| string DOMDocument::$actualEncoding |
| int DOMDocument::$childElementCount |
@readonly @virtual
Definition at line 948 of file php_dom.stub.php.
| mixed DOMDocument::$config |
| DOMDocumentType DOMDocument::$doctype |
@readonly @virtual
Definition at line 859 of file php_dom.stub.php.
| DOMElement DOMDocument::$documentElement |
@readonly @virtual
Definition at line 871 of file php_dom.stub.php.
| string DOMDocument::$documentURI |
@virtual
Definition at line 905 of file php_dom.stub.php.
| string DOMDocument::$encoding |
@virtual
Definition at line 881 of file php_dom.stub.php.
| DOMElement DOMDocument::$firstElementChild |
@readonly @virtual
Definition at line 936 of file php_dom.stub.php.
| bool DOMDocument::$formatOutput |
@virtual
Definition at line 915 of file php_dom.stub.php.
| DOMImplementation DOMDocument::$implementation |
@readonly @virtual
Definition at line 865 of file php_dom.stub.php.
| DOMElement DOMDocument::$lastElementChild |
@readonly @virtual
Definition at line 942 of file php_dom.stub.php.
| bool DOMDocument::$preserveWhiteSpace |
@virtual
Definition at line 924 of file php_dom.stub.php.
| bool DOMDocument::$recover |
@virtual
Definition at line 927 of file php_dom.stub.php.
| bool DOMDocument::$resolveExternals |
@virtual
Definition at line 921 of file php_dom.stub.php.
| bool DOMDocument::$standalone |
@virtual
Definition at line 890 of file php_dom.stub.php.
| bool DOMDocument::$strictErrorChecking |
@virtual
Definition at line 902 of file php_dom.stub.php.
| bool DOMDocument::$substituteEntities |
@virtual
Definition at line 930 of file php_dom.stub.php.
| bool DOMDocument::$validateOnParse |
@virtual
Definition at line 918 of file php_dom.stub.php.
| string DOMDocument::$version |
@virtual
Definition at line 896 of file php_dom.stub.php.
| string DOMDocument::$xmlEncoding |
@readonly @virtual
Definition at line 887 of file php_dom.stub.php.
| bool DOMDocument::$xmlStandalone |
@virtual
Definition at line 893 of file php_dom.stub.php.
| string DOMDocument::$xmlVersion |
@virtual
Definition at line 899 of file php_dom.stub.php.