I'm using PHP 5.2.6. I want to have a default value for an argument in a method, but it seems I'm getting a bit too clever.
The class property blnOverwrite
is defaulted and settable elsewhere in the class. I have a method where I want to have it settable again, but not override the existing value. I get an error when I try this:
public function place( $path, $overwrite = $this->blnOverwrite ) { ... }
Must I do something like this?
public function place( $path, $overwrite = NULL ) {
if ( ! is_null($overwrite) ) {
$this->blnOverwrite = $overwrite;
}
...
}
You must do it that way, afaik, or use a class constant since php 5.3 but of course its fixed and cant be changed later so i would definitely go with your own solution:
you just can shorten it a little:
but thats nearly the same
Yes, you have to do it this way. You cannot use a member value for the default argument value.
From the PHP manual on Function arguments: (emphasis mine)
You absolutely can do this. Best of both worlds: initialize your default property AND your method's default argument with a class constant.