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