3v4l.org

run code in 300+ PHP versions simultaneously
<?php $html = <<< HTML <html> <head> <title>A Simple HTML Document</title> </head> <body> <p>This is a very simple HTML document</p> <p>It only has two paragraphs</p> </body> </html> HTML; $dom = new DomDocument; $dom->loadHtml($html); listAllNodes($dom); function listAllNodes(DomNode $node) { echo "{$node->nodeName}\n"; foreach ($node->childNodes ?: [] as $node) { listAllNodes($node); } }
Output for 8.0.30, 8.1.22 - 8.1.28, 8.2.9 - 8.2.18, 8.3.0 - 8.3.6
#document html html #text head #text title #text #text #text body #text p #text #text p #text #text #text
Output for 7.1.25 - 7.1.28, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.29, 8.1.0 - 8.1.21, 8.2.0 - 8.2.8
#document html html head title #text body #text p #text #text p #text #text

preferences:
182.58 ms | 403 KiB | 165 Q