I have a function with 7 inputs. The last three have default values.
I want to call that function specifying the first four, skip two and
then specify the last.
I thought I could write this as :
$retval = myfunction(arg1 , arg2, arg3, arg4,,,arg7);
.... but Php does not seem to want to let me do this. I get a parse
error until I supply values for the 5th and 6th arguments.
My question is simply this; is skipping arguments like that not allowed
in Php?
--
*************** **************
Chuck Anderson • Boulder, CO
Integrity is obvious.
The lack of it is common.
*************** **************
I want to call that function specifying the first four, skip two and
then specify the last.
I thought I could write this as :
$retval = myfunction(arg1 , arg2, arg3, arg4,,,arg7);
.... but Php does not seem to want to let me do this. I get a parse
error until I supply values for the 5th and 6th arguments.
My question is simply this; is skipping arguments like that not allowed
in Php?
--
*************** **************
Chuck Anderson • Boulder, CO
Integrity is obvious.
The lack of it is common.
*************** **************
Comment