--TEST-- DOM Comment : Variation --SKIPIF-- --FILE-- EOXML; $dom = new DOMDocument(); $dom->loadXML($xml); $root = $dom->documentElement; var_dump($root->hasChildNodes()); $children = $root->childNodes; for ($index = 0; $index < $children->length; $index++) { echo "--- child $index ---\n"; $current = $children->item($index); echo get_class($current), "\n"; var_dump($current->textContent); } --EXPECTF-- bool(true) --- child 0 --- DOMComment string(14) " Hello World! "