up vote 6 down vote favorite
2
share [g+] share [fb]

Possible Duplicate:
PHP equivalent of a Ruby assignment idiom

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?

link|improve this question

52% accept rate
note to closers: this appears to me the better written question, with better answers; plus, it's older – kdgregory Oct 29 '11 at 12:21
feedback

closed as exact duplicate by cHao, Andrew Grimm, Johan, Shoban, Graviton Oct 31 '11 at 2:58

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

4 Answers

isset($x) or $x = 'default';
link|improve this answer
2  
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ł Rudnicki 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 '09 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 '09 at 23:04
feedback

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 you're doing a crazy function call.

link|improve this answer
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 '09 at 13:43
One would hope that you're not actually calling side-effecting methods in an assignment anyway. – Kris Nuttycombe Sep 18 '10 at 16:58
@KaptajnKold You can pass by ref, then the arguments won't be evald ;) – NikiC Oct 27 '11 at 17:09
feedback

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|improve this answer
feedback

As of PHP 5.3 you can use the ternary operator while omitting the middle argument:

$x = $x ?: 'default';
link|improve this answer
feedback

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