Is it possible to use named optional parameters?
Is basically what I want, I want to set the second optional parameter without having to fill in any value for the first.
Thanks,
Rob
Code:
function checkIt($one, $two=2, $three=3) {
echo "$one<BR>$two<BR>$three";
}
checkIt($one,$three="300");
Is basically what I want, I want to set the second optional parameter without having to fill in any value for the first.
Thanks,
Rob