I Need to use call_user_func_array, but my array is too big, from the documentation i only got to use array values in the argument list. Is there no way to use the same array as argument of the callback function.
mixed call_user_func_array ( callable $callback , array $param_arr )
My Code:
echo call_user_func_array("myFirstFunction" , array("1" , "2" , "3"));
function myFirstFunction($arg1, $arg2, $arg3){
return $arg1 . $arg2 . $arg3;
}
My Question is if i have array with 50 or more values than how can use this function?
call_user_func_array?