3v4l.org

run code in 300+ PHP versions simultaneously
<?php function & do_something(& $arg) { $arg = 'func value'; return $arg; } $a = 'initial value'; $b = do_something($a); $b = 'new value'; var_dump($a, $b); $x = 'initial value'; $y = & do_something($x); $y = 'new value'; var_dump($x, $y);

preferences:
34.43 ms | 402 KiB | 5 Q