<?php function foo( &$arg1, &$arg2 ) { var_dump( $arg1, $arg2 ); } $a = 1; $b = 2; call_user_func_array( 'foo', array( &$a, &$b ) );
You have javascript disabled. You will not be able to edit any code.