3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = <<<XML <html> <head><title></title></head> <body> <CONTENT/> </body> </html> XML; $dom = new DOMDocument(); $dom->loadXML($xml); $c = new DOMDocument(); $c->loadXML("<h1>heading</h1>"); $c = $dom->importNode($c); $dom->getElementsByTagName("CONTENT")->item(0)->parentNode->insertBefore($c); echo $dom->saveHTML();
Output for 8.3.0 - 8.3.6
Warning: DOMDocument::importNode(): Cannot import: Node Type Not Supported in /in/1t9Em on line 14 Fatal error: Uncaught TypeError: DOMNode::insertBefore(): Argument #1 ($node) must be of type DOMNode, false given in /in/1t9Em:15 Stack trace: #0 /in/1t9Em(15): DOMNode->insertBefore(false) #1 {main} thrown in /in/1t9Em on line 15
Process exited with code 255.
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18
Warning: DOMDocument::importNode(): Cannot import: Node Type Not Supported in /in/1t9Em on line 14 Fatal error: Uncaught TypeError: DOMNode::insertBefore(): Argument #1 ($node) must be of type DOMNode, bool given in /in/1t9Em:15 Stack trace: #0 /in/1t9Em(15): DOMNode->insertBefore(false) #1 {main} thrown in /in/1t9Em on line 15
Process exited with code 255.
Output for 7.3.12 - 7.3.33, 7.4.0 - 7.4.33
Warning: DOMDocument::importNode(): Cannot import: Node Type Not Supported in /in/1t9Em on line 14 Fatal error: Uncaught TypeError: Argument 1 passed to DOMNode::insertBefore() must be an instance of DOMNode, bool given in /in/1t9Em:15 Stack trace: #0 /in/1t9Em(15): DOMNode->insertBefore(false) #1 {main} thrown in /in/1t9Em on line 15
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33
Warning: DOMDocument::importNode(): Cannot import: Node Type Not Supported in /in/1t9Em on line 14 Fatal error: Uncaught TypeError: Argument 1 passed to DOMNode::insertBefore() must be an instance of DOMNode, boolean given in /in/1t9Em:15 Stack trace: #0 /in/1t9Em(15): DOMNode->insertBefore(false) #1 {main} thrown in /in/1t9Em on line 15
Process exited with code 255.
Output for 5.2.6 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28
Warning: DOMDocument::importNode(): Cannot import: Node Type Not Supported in /in/1t9Em on line 14 Catchable fatal error: Argument 1 passed to DOMNode::insertBefore() must be an instance of DOMNode, boolean given in /in/1t9Em on line 15
Process exited with code 255.
Output for 5.0.5, 5.1.0 - 5.1.1, 5.1.3 - 5.1.6, 5.2.0 - 5.2.5
Warning: DOMDocument::importNode(): Cannot import: Node Type Not Supported in /in/1t9Em on line 14 Warning: DOMNode::insertBefore() expects parameter 1 to be DOMNode, boolean given in /in/1t9Em on line 15 <html> <head><title></title></head> <body> <CONTENT></CONTENT> </body> </html>
Output for 5.1.2
Warning: DOMDocument::importNode(): Cannot import: Node Type Not Supported in /in/1t9Em on line 15 Warning: DOMNode::insertBefore() expects parameter 1 to be DOMNode, boolean given in /in/1t9Em on line 16 <html> <head><title></title></head> <body> <CONTENT></CONTENT> </body> </html>
Output for 5.0.0 - 5.0.4
Warning: DOMDocument::importNode(): Cannot import: Node Type Not Supported in /in/1t9Em on line 14 Warning: insertBefore() expects parameter 1 to be DOMNode, boolean given in /in/1t9Em on line 15 <html> <head><title></title></head> <body> <CONTENT></CONTENT> </body> </html>
Output for 4.4.3 - 4.4.9
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/1t9Em on line 15
Process exited with code 255.
Output for 4.4.2
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/1t9Em on line 16
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_OBJECT_OPERATOR in /in/1t9Em on line 15
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/1t9Em on line 15
Process exited with code 255.

preferences:
197.6 ms | 401 KiB | 316 Q