Pass em just like any other arg.
function doit($arg_array)
{
print_r($arg_array);
}
$data = array(1,2,3);
doit($data);
Be aware that by default, a copy of the array is passed. Modifications done in the function will be lost when the function returns. Add an & to pass by reference. The calling syntax stays the same.
function doit(&$arg_array)