25 lines
489 B
Plaintext
25 lines
489 B
Plaintext
|
|
--TEST--
|
||
|
|
Testing DOMDocumentFragment::appendXML and DOMDocumentFragment::hasChildNodes
|
||
|
|
--EXTENSIONS--
|
||
|
|
dom
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
$doc = new DOMDocument();
|
||
|
|
|
||
|
|
$fragment = $doc->createDocumentFragment();
|
||
|
|
if ($fragment->hasChildNodes()) {
|
||
|
|
echo "has child nodes\n";
|
||
|
|
} else {
|
||
|
|
echo "has no child nodes\n";
|
||
|
|
}
|
||
|
|
$fragment->appendXML('<foo>bar</foo>');
|
||
|
|
if ($fragment->hasChildNodes()) {
|
||
|
|
echo "has child nodes\n";
|
||
|
|
} else {
|
||
|
|
echo "has no child nodes\n";
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
has no child nodes
|
||
|
|
has child nodes
|