3v4l.org

run code in 300+ PHP versions simultaneously
<?php var_dump(change(&create(), 'test')); function create() { return ['type' => 'smth', 'property' => 'smth too']; } function &change(&$obj, $prop) { $obj['property'] = $prop; return $obj; }
Output for 5.3.0 - 5.3.28, 5.4.0 - 5.4.29
Fatal error: Can't use function return value in write context in /in/vbEhL on line 3
Process exited with code 255.

preferences:
196.21 ms | 1395 KiB | 66 Q