PHP "or" Syntax
Asked Answered
D

8

39

I've seen this a lot: $fp = fopen($filepath, "w") or die(); But I can't seem to find any real documentation on this "or" syntax. It's obvious enough what it does, but can I use it anywhere? And must it be followed by die()? Are there any caveats to using or when you could use something like

if (file_exists($filepath))
   $fp = fopen($filepath,"r");
else
   myErrMessage();

I know it seems like a silly question, but I can't find any hard and fast rules for this. Thanks.

Discus answered 2/3, 2012 at 14:51 Comment(4)
or can be used to combine expressions, not statements. And it's sometimes useful because of its lower operator precedence (in comparison to the assignment). Btw, your if blocks are missing curly braces. Don't look for syntax shortcuts until you've mastered that.Apo
Curly braces are unnecessary for conditionals followed by a single statement.Discus
Yes yes; the language syntax allows that. It looks amateurish and is commonly frowned upon nonetheless.Apo
I'd say that's a matter of opinion. I'd also argue that any (reasonable) formatting preference is a relatively poor indicator of what I have and haven't mastered, and is certainly no grounds upon which to dismiss my question until my tastes conform to yours.Discus
F
15

It's a logical operator and can be used in any logical expression.

http://php.net/manual/en/language.operators.logical.php

Feodore answered 2/3, 2012 at 14:54 Comment(2)
You should also look at precedence as $fp = fopen($filepath, "w") or die(); is different from $fp = fopen($filepath, "w") || die();Kochi
To add some more info to the above: the first statement (using or) looks if the first expression $fp = fopen($filepath, "w") returns false (or anything that PHP considers equal to false, like null or 0). If, and only if it does, it executes the second statement, die(). The second one does the same thing, but should usually only be used in an if context.Huey
H
14

Let's just say that:

$result = first() || second();

will evaluate to:

if (first()) {
    $result = true;
} elseif (second()) {
    $result = true;
} else {
    $result = false;
} 

while:

$result = first() or second();

will evaluate to:

if ($result = first()) {
    // nothing
} else {
    second();
}

In other words you may consider:

$result = first() || second();

$result = (first() || second());

and:

$result = first() or second();

to be:

($result = first()) || second();

It is just matter of precedence.

Homothallic answered 15/7, 2014 at 0:49 Comment(0)
C
6

This is neat trick, inherited from some PHP predecessor, based on the fact that PHP quite smartly won't evaluate any expression following OR, if first one returned true:

function a($ret){
    echo "FOO";
    return $ret;
}
function b($ret){
    echo "BAR";
    return $ret;
}

$result = (a(true) OR b(true));

will print out only FOO, means b() weren't even executed.

Crustal answered 2/3, 2012 at 15:2 Comment(0)
M
5

or just does a boolean comparison.

What's returned by fopen() can be treated as such a boolean value, because it returns FALSE if it fails (and a different value if it does not).

If it fails, the statement is evaluated to the right, and so the function die() is called.

Megargee answered 2/3, 2012 at 14:56 Comment(0)
I
3

Basically it means "if the first command fails, then perform the second command." In your example, if PHP cannot open the file, it will terminate the script (die()).

Inebriate answered 2/3, 2012 at 14:56 Comment(1)
Technically it tests if the first expression returns a boolean false, then with shortcut boolean expressions it will execute the second expression. If the first expression returns a non-false value, then shortcut boolean expressions mean there is no need to execute the second expressionEolian
S
3

'Or' in PHP is like C-like syntax (||)

<?php 
if( ($a==1 || $a==2) && ($b==3 || $b==4) && ($c==5 || $c==6) ) { 
     //do that something here. 
} 
?>

The 'Or' you are talking about is just a trick as the following states:

Example:

$result = mysql_query('SELECT foo FROM bar', $db) or die('Query failed: ' . mysql_error($db));

The or die() trick is a very poor choice for several reasons:

  1. It's not a very nice way to present the user with an error message.
  2. You cannot catch the error in any way.
  3. You cannot log the error.
  4. You cannot control whether it should be output to the screen or not. It's okay to do that in a development environment, but certainly not in a production environment.

    5. It prevents you from doing any sort of cleanup. It just ends the script abruptly.

Reference: [enter link description here][1]

[1]: http://www.phpfreaks.com/blog/or-die-must-dieenter code here

Systematic answered 2/3, 2012 at 14:59 Comment(0)
L
1

It can be used just like you'd use || as a logical OR http://php.net/manual/en/language.operators.logical.php

Layby answered 2/3, 2012 at 14:55 Comment(0)
K
0

It can be used as || but hasn't the same precedence: http://www.php.net/manual/en/language.operators.precedence.php

The precedence of an operator specifies how "tightly" it binds two expressions together. For example, in the expression 1 + 5 * 3, the answer is 16 and not 18 because the multiplication ("*") operator has a higher precedence than the addition ("+") operator. Parentheses may be used to force precedence, if necessary. For instance: (1 + 5) * 3 evaluates to 18.

Kochi answered 2/3, 2012 at 14:58 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.