I have php function
by multi parameter. I want to call this function
with setting only last argument. Simple way is setting other argument empty. But it isn't good.
Is any way to call this function
with setting last argument and without setting other argument?
See this example:
function MyFunction($A, $B, $C, $D, $E, $F)
{
//// Do something
}
//// Simple way
MyFunction("", "", "", "", "", "Value");
//// My example
MyFunction(argument6: "Value")