3v4l.org

run code in 300+ PHP versions simultaneously
<?php function f($obst) { $obst['birne'] = 'gelb'; return $obst; } $obst['apfel'] = 'gruen'; $obst = f(&$obst); var_dump($obst);
Output for 5.4.0 - 5.4.5
Fatal error: Call-time pass-by-reference has been removed; If you would like to pass argument by reference, modify the declaration of f(). in /in/7pNBL on line 8
Process exited with code 255.
Output for 5.3.0 - 5.3.29
Deprecated: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of f(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /in/7pNBL on line 8 array(2) { ["apfel"]=> string(5) "gruen" ["birne"]=> string(4) "gelb" }

preferences:
179.35 ms | 1395 KiB | 43 Q