可能重複:
Is it possible to skip parameters that have default values in a php(5) function call?PHP使用默認參數調用函數,但在參數列表中間?
比方說這是我的函數:
function myFunc($a ,$b = 'ball',$c = 'cat')
{
echo "$a $b $c" ;
}
myFunc("apple"); // output : "apple ball cat"
myFunc("apple","box"); // output : "apple box cat"
我怎麼能說myFunc
與$b
默認參數,例如
myFunc("apple", SOMETHING_HERE , "cow"); // output : "apple ball cow"
這是一個很好的解決方法。 – DhruvPathak
哇,我討厭php有時。 – timh