<?php $args = [1]; $ref = [&$args]; function test(&$v) { $v = 7; }; test(...$ref[0]); var_dump($args[0]);
You have javascript disabled. You will not be able to edit any code.