Is something like this possible?
<?php
function myfunc($i, $j){
return($j);
}
echo myfunc($j=6, $i=3);
?>
I know this doesn't work, but is there some way to do unordered list for input arguments to a function? I want the above function to return 6 by only manipulating the function call.
Thanks!