Possible Duplicate:
Any way to specify optional parameter values in PHP?
just randomly came across this.
If I have a function like so:
public function getSomething($orderBy='x', $direction = 'DESC', $limit=null){
//do something random
}
When calling the function is it possible to ignore the first two fields and leave them default yet specify the 3rd.
For example:
$random = $this->my_model->getSomething(USE_DEFAULT, USE_DEFAULT, 10);
I know I can pass the 1st and 2nd parameters but all im asking is if their is some kind of special keyword that just says use the default value.
Hope that makes sense. its not a problem, just curious.
thanks for reading
You cannot ignore params. But you can do something Like this:
see ya
I don't think PHP can do this. The best solution that I know of is outlined here: http://www.php.net/manual/en/functions.arguments.php#70511
Honestly, this becomes a problem when functions are trying to do too much. There's almost always a better design pattern when you see a function grow to more than a few parameters (usually it's the poor guy that inherited the old code, and appending parameters is this quickest way to "get the job done").
Elusive's answer is the best according to your question, but take a look at cyclomatic complexity: http://en.wikipedia.org/wiki/Cyclomatic_complexity
This is a good way to know if your function is doing too much, which makes your question less of a problem than it probably is now.
You need to do that yourself. You can use
null
to indicate that a default value should be used:Then pass
null
when calling it to indicate that you want to use the defaults:Another possible solution that I use sometimes is an additional parameter at the very end of the parameter list, containing all optional parameters:
That way you do not need to specify all optional arguments.
array_merge()
ensures that you are always dealing with a complete set of options. You would use it like this:It seems like there is no required parameter this particular case, but if you need one, simply add it in front of the optional ones: