Possible Duplicate:
PHP Optional Parameters - specify parameter value by name?
Can I call a function as with first and third parameter only this in PHP5?
Is there another way to specify the params order?
function foo($param1=null, $param2=null, $param3=null) {}
foo($param1, $param3);
Instead of:
foo($param1, null, $param3);