I have this:
function foo($a='apple', $b='brown', $c='Capulet') {
// do something
}
Is something like this possible:
foo('aardvark', <use the default, please>, 'Montague');
|
I have this:
Is something like this possible:
|
||||
|
|
If it’s your function, you could use
Then you can skip them by using
|
|||
|
|
|
Found this, which is probably still correct: http://www.webmasterworld.com/php/3758313.htm Short answer: no. Long answer: yes, in various kludgey ways that are outlined in the above. |
|||
|
|
|
If it's your own function instead of one of PHP's core, you could do:
|
||||
|
|
|
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. |
|||
|
|
|
|||
|
|