3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { public function bar() { $name = 'this'; $$name =& 'herpderp'; var_dump($$name); var_dump($this); } } $d = new Foo; $d->bar(); var_dump($d);
Output for 5.4.18 - 5.4.19
Parse error: syntax error, unexpected ''herpderp'' (T_CONSTANT_ENCAPSED_STRING) in /in/0D2gt on line 6
Process exited with code 255.
Output for 5.4.0 - 5.4.17
Parse error: syntax error, unexpected ''herpderp'' (T_CONSTANT_ENCAPSED_STRING) in /in/1AJsP on line 6
Process exited with code 255.
Output for 5.3.0 - 5.3.27
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /in/1AJsP on line 6
Process exited with code 255.

preferences:
176.86 ms | 1395 KiB | 55 Q