3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { $a=1; $b=2; $c=3; } class B { $a=5; $b=6; $e=7; $f=8; } $foo = new A; $bar = new B; foreach(get_object_vars($foo) as $name=>$value) { if(property_exists($bar, $name)) { $bar->$name = $value; } } var_dump($bar);
Output for 5.4.0 - 5.4.24
Parse error: syntax error, unexpected '$a' (T_VARIABLE), expecting function (T_FUNCTION) in /in/jL5ui on line 5
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_VARIABLE, expecting T_FUNCTION in /in/jL5ui on line 5
Process exited with code 255.

preferences:
171.11 ms | 1399 KiB | 61 Q