<?php $a = 123; $b = 0; $c = [ $a, &$b ]; function a($a, &$b) { $b = $a; } a(...$c); var_dump($b === $a);
You have javascript disabled. You will not be able to edit any code.