I have a simple function:
function GetRich($a = 1, $b = 2, $c = 3) {
//do something, rob a bank
}
How can I call this function and set only variables $b and $c, without $a? I want $a to get the default value (1), without set it when calling the function.
//this will give an error for sure but I don't know what to replace the "?" with...
$rich = GetRich(?,2, 3);
Thanks all,
Arthur