Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Actually, I am facing a codebase where developpers decided to use 'AND' and 'OR' instead of '&&' and '||'. I know that there is difference in operators precedence (&& goes before 'and'), but with given framework (prestashop to be precise) is clearly not a reason. So, my question: which version are you using? Is 'and' more readable than '&&'? || there is ~ difference?

share|improve this question
Note that ~ is the bit-wise NOT operator and not the logical. ;-) – Gumbo May 10 '10 at 14:26
1  
Yes, i know. Bad habits :) . It is a little bit strange that in PHP there are 'and', 'or' and 'xor', but there is no 'not', isn't it? – ts. May 12 '10 at 10:30
@ts: the correct answer here is the one provided by R. Bemrose stackoverflow.com/questions/2803321/and-vs-as-operator/… – Marco Demaio May 24 '11 at 15:45
! is the logical not operator – Razor Storm May 30 '11 at 8:15
You should uncheck the answer that's chosen here because it's wrong and misleading!!! – doublejosh May 16 '12 at 5:10

8 Answers

If you use AND and OR, you'll eventually get tripped up by something like this:

$this = true;
$that = false;

$truthiness = $this and $that;

Want to guess what $truthiness equals?

If you said false... bzzzt, sorry, wrong!

$truthiness above has the value true. Why? = has a higher precedence than and. The addition of parentheses to show the implicit order makes this clearer:

($truthiness = $this) and $that

If you used && instead of and in the first code example, it would work as expected and be false.

Edit:

Wow, has it been three years already?

As discussed in the comments below, this also works to get the correct value, as parentheses have higher precedence than =

$truthiness = ($this and $that)
share|improve this answer
14  
+1: this should be made loud and clear in PHP documentation, or PHP should change and give same precedence to these operators or DEPRECATE and or once for all. I saw too many people thinking they are exactly the same thing and the answers here are more testimonials. – Marco Demaio May 24 '11 at 15:44
3  
Actually, other languages (for example, Perl and Ruby) also have these variants with the same precedence distinction so it wouldn't be sensible to deviate from this standard (however puzzling it might be for beginners) by making precedence equal in PHP. Not to mention the backward compatibility of tons of PHP applications. – Mladen Jablanović Jan 25 '12 at 8:27
3  
People's inability to read the documentation for a language does not make the language's decisions wrong. As Mladen notes, Perl and Ruby also use these extra operators, and with the same precedences. It allows for constructs such as $foo and bar(), which are nice shortcuts for if statements. If unexpected behaviour (from bad documentation, or not reading it) were a reason not to use something we wouldn't be talking about using PHP at all. – Altreus Aug 30 '12 at 11:49
Epic example. +1. – zozo Apr 5 at 14:01
1  
I spent 3 minutes to find wrong line: $this = true, :( and what about $truthiness = ($this and $that); it's look better for me :) – Dmitriy Kozmenko May 6 at 15:52
show 1 more comment

Depending on how it's being used, it might be necessary and even handy. http://php.net/manual/en/language.operators.logical.php

// "||" has a greater precedence than "or"

// The result of the expression (false || true) is assigned to $e
// Acts like: ($e = (false || true))
$e = false || true;

// The constant false is assigned to $f and then true is ignored
// Acts like: (($f = false) or true)
$f = false or true;

But in most cases it seems like more of a developer taste thing, like every occurrence of this that I've seen in CodeIgniter framework like @Sarfraz has mentioned.

share|improve this answer
It's worth noting that the "true" isn't ignored if that expression is part of a larger statement. Consider the case if ($f = false or true) $f = true; - the result would be that $f does become true in the end, because the expression evaluates as true overall. – Chris Browne Mar 15 '12 at 22:04

I guess it's a matter of taste, although (mistakenly) mixing them up might cause some undesired behaviors:

true && false || false; // returns false

true and false || false; // returns true

Hence, using && and || is safer for they have the highest precedence. In what regards to readability, I'd say these operators are universal enough.

share|improve this answer
2  
This isn't true, they all return false. – Jay Feb 22 at 0:26

Precedence differs between && and and (&& has higher precedence than and), something that causes confusion when combined with a ternary operator. For instance,

$predA && $predB ? "foo" : "bar"

will return a string whereas

$predA and $predB ? "foo" : "bar"

will return a boolean.

share|improve this answer

For safety, I always parenthesise my comparisons and space them out. That way, I don't have to rely on operator precedence:

if( 
    ((i==0) && (b==2)) 
    || 
    ((c==3) && !(f==5)) 
  )
share|improve this answer

which version are you using?

If the coding standards for the particular codebase I am writing code for specifies which operator should be used, I'll definitely use that. If not, and the code dictates which should be used (not often, can be easily worked around) then I'll use that. Otherwise, probably &&.

Is 'and' more readable than '&&'?

Is it more readable to you. The answer is yes and no depending on many factors including the code around the operator and indeed the person reading it!

|| there is ~ difference?

Yes. See logical operators for || and bitwise operators for ~.

share|improve this answer

Normally The people who are as Microsoft(VB and .Net) developers always use "AND" and "OR" since it those languages need not to be a Case Sensitive, But the people who are in C, C++, PHP, JAVA are always used "&&" and "||" since those languages are Case Sensitive.

This is what my taught...

share|improve this answer
But do you really still make friends with people who uses VB? :-) – Marco Demaio May 24 '11 at 15:36

I don't know if there's a precedence difference between && and AND but I really believe that && is faster than AND since it's more "machine language" than AND and lots of other languages don't accept AND or OR logical operators.

share|improve this answer
2  
Huh? How is && more "machine language" than AND? And even if it is, what does that have to do with execution speed in an (on-the-fly) compiled language like PHP? – David Gelhar May 10 '10 at 14:46
The difference in precedence is documented: php.net/manual/en/language.operators.precedence.php – Frank Farmer Aug 17 '12 at 18:33

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.