3v4l.org

run code in 300+ PHP versions simultaneously
<?php function main() { $xml = '<foo><bar /></foo>'; $dom1 = new DOMDocument(); $dom1->loadXML($xml); $dom2 = clone $dom1; var_dump($dom1->firstChild->nodeName); var_dump($dom2->firstChild->nodeName); $child1 = $dom1->firstChild; $child2 = clone $child1; $child1->foo = 12; $child2->foo = 88; return array($dom1, $dom2, $child1, $child2); } list($x, $y, $c, $d) = main(); var_dump($x->firstChild->foo); var_dump($y->firstChild->foo);
Output for 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
string(3) "foo" string(3) "foo" Deprecated: Creation of dynamic property DOMElement::$foo is deprecated in /in/TM9fV on line 15 Deprecated: Creation of dynamic property DOMElement::$foo is deprecated in /in/TM9fV on line 16 int(12) Warning: Undefined property: DOMElement::$foo in /in/TM9fV on line 24 NULL
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28
string(3) "foo" string(3) "foo" int(12) Warning: Undefined property: DOMElement::$foo in /in/TM9fV on line 24 NULL
Output for 5.2.6 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
string(3) "foo" string(3) "foo" int(12) Notice: Undefined property: DOMElement::$foo in /in/TM9fV on line 24 NULL
Output for 7.3.32 - 7.3.33
string(3) "foo" string(3) "foo" int(12) NULL
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.2, 5.1.4 - 5.1.6, 5.2.0 - 5.2.5
string(3) "foo" string(3) "foo" int(12) Notice: Undefined property: DOMElement::$foo in /in/TM9fV on line 24 NULL
Output for 5.1.3
string(3) "foo" Warning: main(): Invalid State Error in /in/TM9fV on line 10 Notice: Trying to get property of non-object in /in/TM9fV on line 10 NULL int(12) Warning: main(): Invalid State Error in /in/TM9fV on line 24 Notice: Trying to get property of non-object in /in/TM9fV on line 24 NULL
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_VARIABLE in /in/TM9fV on line 7
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_VARIABLE in /in/TM9fV on line 7
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/TM9fV on line 7
Process exited with code 255.

preferences:
292.78 ms | 401 KiB | 370 Q