I have a piece of code let's say:
function nums($a = 1, $b = 2, $c){
echo "$a, $b, $c";
}
nums(?, ?, 3);
Can I somehow substitute ?
to tell PHP to use default values for those arguments, and only pass that one argument that is needed, or is it done only by placing $c first in the parameter list and then the optional parameters?