Jeff McKeon wrote:

Is it possible to pass an array as an elemtent of a function??
Yes


Something like this:


$array1=array(1,2,3,4);
$array2=array(a,b,c,d);

Function Somefunction($var1,$var2)
{
        someprocess using $array1 and array2;
}

Somefunction($array1,$array2);
This is the right way.


Or does something special have to be done?
No.


Thanks,


Jeff


You could have tried it yourself.


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to