Saturday, January 8, 2011

can php function parameters be passed in different order as defined in declaration.

Programmer Question

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)


Find the answer here

No comments:

Post a Comment

LinkWithin

Related Posts with Thumbnails