I am trying to assign values of my array to function's argument. I can't tell the length of the array but I want array value to be my functions argument. Ex:
$a= array {'1'=>'arg1', '2'=>'arg2', '3'=>'arg3'} ; //could have more than 3 values
function addArray('arg1','arg2','arg3'); //want to add values to argument.
Any thoughts? Thank a lot.