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->getElementsByTagName('body')[0]); function listAllNodes(DomNode $node) { echo "{$node->nodeName}: {$node->textContent}\n"; foreach ($node->childNodes ?: [] as $node) { listAllNodes($node); } }
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.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
body: This is a very simple HTML document It only has two paragraphs #text: p: This is a very simple HTML document #text: This is a very simple HTML document #text: p: It only has two paragraphs #text: It only has two paragraphs #text:

preferences:
168.43 ms | 404 KiB | 165 Q