How do I specify that I want to use the default values for the first two arguments but not the last argument?
function doStuff($a = 1, $b = 2, $c = 3) {
echo $a . $b. $c;
}
// psuedo-code:
doStuff(DEFAULT, DEFAULT, 99);
How do I specify that I want to use the default values for the first two arguments but not the last argument?
function doStuff($a = 1, $b = 2, $c = 3) {
echo $a . $b. $c;
}
// psuedo-code:
doStuff(DEFAULT, DEFAULT, 99);
:: Copyright KIRUPA 2024 //--