Suppose I have a function/method F() that takes 3 parameters $A, $B and $C defined as this.
function F($A,$B,$C){
...
}
Suppose I don't want to follow the order to pass the parameters, instead can I make a call like this?
F($C=3,$A=1,$B=1);
instead of
F(1,2,3)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…