I have this:
function foo($a=\'apple\', $b=\'brown\', $c=\'Capulet\') { // do something }
Is something like this possible:
You pretty much found the answer, but the academic/high-level approach is function currying which I honestly never found much of a use for, but is useful to know exists.