Re: Howto re-pass arguments?



J.O. Aho wrote:
If you want the arguments that are used when you call function A(), you need
to use func_get_args() in function A(), so you would need to use
b(func_get_args()). As you see from b(), it won't present your variables
inside a array.

Ok, thanks :-) Array is not bad, but I thought I could
do this in a more "transparent" way, without "touching"
the arguments.
.