Reply to Re: Unknown number of incoming parameters
Posted by ZeldorBlat on 08/01/05 05:07
function foo() {
$argCount = func_num_args(); //number of arguments passed to foo
$argValues = func_get_args(); //An array containing all the
parameters
.....
}