mirror of
https://github.com/php/php-src.git
synced 2026-03-28 10:12:18 +01:00
89 lines
1.3 KiB
PHP
89 lines
1.3 KiB
PHP
--TEST--
|
|
DOM\XMLDocument debug
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
|
|
$dom = DOM\XMLDocument::createEmpty();
|
|
var_dump($dom);
|
|
|
|
?>
|
|
--EXPECT--
|
|
object(DOM\XMLDocument)#1 (37) {
|
|
["encoding"]=>
|
|
string(5) "UTF-8"
|
|
["xmlEncoding"]=>
|
|
string(5) "UTF-8"
|
|
["standalone"]=>
|
|
bool(false)
|
|
["xmlStandalone"]=>
|
|
bool(false)
|
|
["version"]=>
|
|
string(3) "1.0"
|
|
["xmlVersion"]=>
|
|
string(3) "1.0"
|
|
["formatOutput"]=>
|
|
bool(false)
|
|
["validateOnParse"]=>
|
|
bool(false)
|
|
["resolveExternals"]=>
|
|
bool(false)
|
|
["preserveWhiteSpace"]=>
|
|
bool(true)
|
|
["recover"]=>
|
|
bool(false)
|
|
["substituteEntities"]=>
|
|
bool(false)
|
|
["doctype"]=>
|
|
NULL
|
|
["documentElement"]=>
|
|
NULL
|
|
["strictErrorChecking"]=>
|
|
bool(true)
|
|
["documentURI"]=>
|
|
NULL
|
|
["firstElementChild"]=>
|
|
NULL
|
|
["lastElementChild"]=>
|
|
NULL
|
|
["childElementCount"]=>
|
|
int(0)
|
|
["nodeName"]=>
|
|
string(9) "#document"
|
|
["nodeValue"]=>
|
|
NULL
|
|
["nodeType"]=>
|
|
int(9)
|
|
["parentNode"]=>
|
|
NULL
|
|
["parentElement"]=>
|
|
NULL
|
|
["childNodes"]=>
|
|
string(22) "(object value omitted)"
|
|
["firstChild"]=>
|
|
NULL
|
|
["lastChild"]=>
|
|
NULL
|
|
["previousSibling"]=>
|
|
NULL
|
|
["nextSibling"]=>
|
|
NULL
|
|
["attributes"]=>
|
|
NULL
|
|
["isConnected"]=>
|
|
bool(true)
|
|
["ownerDocument"]=>
|
|
NULL
|
|
["namespaceURI"]=>
|
|
NULL
|
|
["prefix"]=>
|
|
string(0) ""
|
|
["localName"]=>
|
|
NULL
|
|
["baseURI"]=>
|
|
NULL
|
|
["textContent"]=>
|
|
string(0) ""
|
|
}
|