Posted by zapzap on 10/21/07 06:48
Hello :-)
Is it possible to pass all arguments to another function?
function A()
{
B(func_get_args());
}
function B()
{
var_dump(func_get_args());
}
I dont know how many arguments will come for A, and i want
A to handle them transparent and pass all to B.
Now i'm doing this with func_get_args but I get
an array ob B's input. original arguments would be
better. Is this possible in any way?
TIA 8-)
[Back to original message]
|