Only use default value for some of the arguments

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);