vote up 3 vote down star

In Ruby you can easily set a default value for a variable

x ||= "default"

The above statement will set the value of x to "default" if x is nil or false

Is there a similar shortcut in PHP or do I have to use the longer form:

$x = (isset($x))? $x : "default";

Are there any easier ways to handle this in PHP?

flag

40% accept rate

3 Answers

vote up 2 vote down

i wrap it in a function:

function default($value, $default) {
    return $value ? $value : $default;
}
// then use it like:
$x=default($x, 'default');

some people may not like it, but it keeps your code cleaner if your doing a crazy function call.

link|flag
1  
The "problem" with wrapping it in a function call is that all the arguments get evaluated. In a = b || c, c only gets evaluated if b is falsey. This may or may not be what you want. – KaptajnKold Jun 3 at 13:43
vote up 3 vote down
isset($x) or $x = 'default';
link|flag
1  
That'll work as long as we don't consider false values of $x to be 'set'. – Adam Bellaire Oct 2 '08 at 15:51
$x === false and $x = 'default'; isset($x) or $x = 'default'; – Michał Słaby Oct 2 '08 at 18:37
I really like the isset($x) or $x = 'default'; version; you ought to update your answer. :-) – Ben Blank Jun 1 at 18:40
@Adam - that's true, but the same can be said for ruby's "||=" notation: x = false; x ||= true; x #=> true – rampion Jun 1 at 23:04
vote up 1 vote down

I think your longer form is already the shortcut for php... and I wouldn't use it, because it is not good to read

Some notice: In the symfony framework most of the "get"-Methods have a second parameter to define a default value...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.