Hi,
Suppose,
function myfox($x,$y) {
//some code
}
Now I need to make the above arguments, $x and $y, to be optional when I want to call myfox() function.
i.e:
myfox();
or
myfox($x);
without an error messages about missing or unsufficient arguments.
Is this possible?😕