Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Essentially, I'd love to be able to define a variable as one thing unless that thing doesn't exist. I swear that somewhere I saw a shorthand conditional that looked something like this:

$var=$_GET["var"] || "default";

But I can't find any documentation to do this right, and honestly it might have been JS or ASP or something where I saw it.

I understand that all that should be happening in the above code is just to check if either statement returns true. But I thought I saw someone do something that essentially defined a default if the first failed. Is this something anyone knows about and can help me? Am I crazy? It just seems redundant to say:

$var=($_GET["var"]) ? $_GET["var"] : "default";

or especially redundant to say:

if ($_GET["var"]) { $var=$_GET["var"]; } else { $var="default"; }

Thoughts?

share|improve this question

3 Answers

up vote 6 down vote accepted

In PHP 5.3+, you can do:

$var = $_GET["var"] ?: "default";

This is an extension to the ternary operator, borrowed from GCC et al.

share|improve this answer
Fantastic! That's what I was looking for. Googling it got me to something that seems to explain that Javascript does my above notation. Unfortunately, I don't have PHP 5.3 installed on my server, and that's not really up to me. – Ben Saufley Sep 17 '10 at 19:49
I forgot that I couldn't insert returns in my comment. Just wanted to end by saying thanks! – Ben Saufley Sep 17 '10 at 19:50
Also, you're correct about JavaScript. For the logical (short-circuit) operators, || and &&, JavaScript returns the last value it evaluates. So if the first value in an || is falsy (e.g. undefined), it returns the second. However, PHP always returns true or false for logical operators. – Matthew Flaschen Sep 17 '10 at 20:00

Matthew has already mentioned the only way to do it in PHP 5.3. Note that you can also chain them:

$a = false ?: false ?: 'A'; // 'A'

This is not the same as:

$a = false || false || 'A'; // true

The reason why is that PHP is like most traditional languages in this aspect. The logical OR always returns true or false. However, in JavaScript, the final expression is used. (In a series of ORs, it will be the first non-false one.)

var a = false || 'A' || false; // 'A' 
var b = true && 'A' && 'B';    // 'B';
share|improve this answer

In such cases you should be checking for existence of the variable in $_GET and then whether it's valid for your parameters. For example:

$var = (isset($_GET["var"]) && $_GET['var'] !== '') ? $_GET["var"] : "default";

However, this can become pretty unreadably pretty quickly. I'd say keep it readable by first initializing your variable to a safe default, and then overwriting that with an external one, if that's valid:

$var = "default";
if (isset($_GET['var') && $_GET['var'] !== '') {
    $var = $_GET['var] ;
}

As for your first example, $var=$_GET["var"] || "default"; exists in Javascript: var someVar = incomingVar || "default";

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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