I know you can pass a variable number of arguments to a function an access them individually.
For example
function foo()
{
$arg = func_get_arg(0);
$arg += 10;
}
$a = 100;
foo($a);
echo "A is $a\n";
But those arguments are passed by value as demonstrated above.
Is it possible to use them as if they was passed by reference in a similar manner to functions like bind_param in the mysqli library?