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.

If I try this:

$a = 0;    
echo $a + ++$a, PHP_EOL;
echo $a;

I get this output:

2
1

Demo: http://codepad.org/ncVuJtJu

Why is that?

I expect to get this as an output:

1
1

My understanding:

$a = 0;                    // a === 0    
echo $a + ++$a, PHP_EOL;   // (0) + (0+1) === 1
echo $a;                   // a === 1

But why isn't that the output?

share|improve this question
57  
Come on Neal ^_^ – hakre Mar 14 '12 at 20:31
6  
For everyone who says that preincrement is always superior to postincrement due to the lack of a temporary variable, take note! – user530229 Mar 14 '12 at 20:36
7  
Am I the only one who wants to slap people posting questions about UB real hard? Like, RTFM... – TC1 Mar 15 '12 at 6:42
21  
Whatever you intended $l + ++$l to mean, I guarantee that there's a more straightforward way to express that intent. – Keith Thompson Mar 15 '12 at 7:10
4  
@TimPost: This problem is definitely language specific - for example, in C# the results are well defined (see stackoverflow.com/questions/5294885/…). The correct answer would need to reference the language specifications, and that's different for each language. – interjay Mar 16 '12 at 19:02
show 25 more comments

12 Answers

up vote 94 down vote accepted

All the answers explaining why you get 2 and not 1 are actually wrong. According to the PHP documentation, mixing + and ++ in this manner is undefined behavior, so you could get either 1 or 2. Switching to a different version of PHP may change the result you get, and it would be just as valid.

See example 1, which says:

// mixing ++ and + produces undefined behavior
$a = 1;
echo ++$a + $a++; // may print 4 or 5

Notes:

  1. Operator precedence does not determine the order of evaluation. Operator precedence only determines that the expression $l + ++$l is parsed as $l + (++$l), but doesn't determine if the left or right operand of the + operator is evaluated first. If the left operand is evaluated first, the result would be 0+1, and if the right operand is evaluated first, the result would be 1+1.

  2. Operator associativity also does not determine order of evaluation. That the + operator has left associativity only determines that $a+$b+$c is evaluated as ($a+$b)+$c. It does not determine in what order a single operator's operands are evaluated.

Also relevant: On this bug report regarding another expression with undefined results, a PHP developer says: "We make no guarantee about the order of evaluation [...], just as C doesn't. Can you point to any place on the documentation where it's stated that the first operand is evaluated first?"

share|improve this answer
Yea, it's because the expression is evaluated from right to left in the parser. But as long as that is not specified the behavior of the expression is not specified and should be avoided. – Tarion Mar 15 '12 at 12:51
How does the "assignments are parsed in a right to left order" rule of PHP expressions does not shed some light into this? Won't it remove the undefined behaviour? – hakre Mar 16 '12 at 12:07
@hakre: That rule just says that assignment is right-associative, i.e. $a=$b=$c is parsed as $a=($b=$c). It is only relevant when you have multiple assignment operators in an expression. – interjay Mar 16 '12 at 12:31
   
@interjay: But for the expression asked about, the left part is not involved in any incrementation. As the right part is triggered first because of operator precedence, it's not undefined. Edit: Well actually you can't say, right. – hakre Mar 16 '12 at 12:40
2  
@hakre: The right part is not necessarily evaluated first. Operator precedence only determines where to add the parentheses here, i.e. $l + ++$l --> $l + (++$l). But it does not determine whether the left or right side of the + operator is evaluated first. – interjay Mar 16 '12 at 12:46
show 3 more comments

A preincrement operator "++" takes place before the rest of the expression it's in evaluates. So it is actually:

echo $l + ++$l; // (1) + (0+1) === 2
share|improve this answer
7  
To add to this: Compare against echo $l + $l++;, which outputs 1 as the OP was expecting. – todofixthis Mar 14 '12 at 20:39
2  
Side note; is that actually documented for PHP? I can't find anything about its evaluation order vs. the rest of the expression. – Joachim Isaksson Mar 14 '12 at 20:42
1  
@JoachimIsaksson Yes, it is documented as undefined behaviour. @RyanP No, there're languages with defined behaviour in such cases, e.g. Java. – kirilloid Mar 14 '12 at 20:50
2  
@Corbin Operator precedence does not really explain the evaluation order, since postfix and prefix ++ both have the same precedence but aren't evaluated in the same order. – Joachim Isaksson Mar 14 '12 at 20:51
7  
@RyanP: See Undefined behaviour – ypercube Mar 14 '12 at 21:08
show 19 more comments
a + b

a = 1
b = ++a

:= 2

Why do you expect something else?

In PHP:

$a = 0;
$c = $a + ++$a;

Operator precedence visualized:

$c = ($a) + (++$a);

Evaluation sequence visualized:

$a = 0; ($a = 0)
$a = 1; (++$a)
$c = $a + $a (1 + 1);

Or written out:

The moment the sum operation is performed, $a is already 1 because ++$a has been already evaluated. The ++ operator is evaluated before the + operator.


For the fun:

$a++ + ++$a

Results in 2, too. However if you compare it as an expression, it's not equal:

$a++ + ++$a == $a + ++$a

Where as

$a++ + ++$a == $a-- + --$a 

is "equal".

share|improve this answer
In my example a === 0 – Neal Mar 14 '12 at 20:34
a is zero, not 1. – bfavaretto Mar 14 '12 at 20:34
3  
@hakre you need to explain this, your answer doesn't make sense. – Toby Allen Mar 14 '12 at 20:35
4  
Whoa why the downvotes everyone?! Kind of a bland explanation, but technically correct! – Corbin Mar 14 '12 at 20:36
1  
@Corbin the down votes came before the edited answer with explanation. – Toby Allen Mar 14 '12 at 20:44
show 8 more comments

++ is the higher precedence operator, so it gets applied first.

So now l = 1.

So 1 + 1 = 2.

share|improve this answer
1  
Actually both prefix and postfix ++ are the same precedence, so precedence shouldn't have anything to do with evaluation order. – Joachim Isaksson Mar 14 '12 at 20:43
@JoachimIsaksson I believe he was referring to the precedence of ++ over +. – Pete171 Mar 14 '12 at 22:19
Yep, in the snippet above we only have prefix not postfix. – John3136 Mar 14 '12 at 23:30
1  
Seriously, what? the word precedence doesn't give it away? – John3136 Mar 19 '12 at 10:05
2  
Precedence only determines grouping. Evaluation order is independent. – Daniel Fischer Jul 20 '12 at 1:43
show 1 more comment

When you do your ++$l (preincrement), it will be done before your addition -> check operator precedence).

So, the value of $l will be 1 before your addition :

echo $l + ++$l; // $l => 1  because ++$l is done first

So your answer will be 2.

But when you do :

echo $l // you will get your first value which is $l => 1

So your answer will be 1.

share|improve this answer
1  
Well that is useless.... Why would I get 1 + 1? – Neal Mar 14 '12 at 20:38

Check the increment operator manual:

http://www.php.net/manual/en/language.operators.increment.php

Or see this codepad: http://codepad.org/Y3CnhiLx

<?php

$n = 0;
$m = 0;
echo '++ before:';
echo $n+ ++$n;
echo PHP_EOL;
echo '++ after:';
echo $m+ $m++;
echo PHP_EOL;
echo 'n:'.$n;
echo PHP_EOL;
echo 'm:'.$m;

Outputs:

++ before:2
++ after:1
n:1
m:1
share|improve this answer

As you may know we have two increment operator, one is pre-increment and second is post-increment. Pre-increment increase the value of integer before it use in expression, on the other hand post increment increase value of number after it used in expression.

suppose you have variable $a and variable $b as below

$a=0;

$b=++$a gives the value of b=1

while

$b=$a++ gives the value b=0

share|improve this answer

The output of your code varies with PHP version as seen here

Output for 4.3.0 - 5.0.5
1
1

In the above case the left hand side of + operator is evaluated first (0, 1, +).

Output for 5.1.0 - 5.5.0alpha4
2
1

In the above case the right hand side of + operator is evaluated first (1, 1, +).

This is in accordance with interjay's answer that in PHP there is no guarantee about the order of evaluation of sub-expresions. The assumption that the output could be 1, 1 is correct, so are that answers that claim that the output could be 1, 2.

share|improve this answer

This behaviour can be confirmed by inspecting how PHP compiles your script, for example:

$a = 0;
echo $a + ++$a;

Compiles into the following opcodes, which are then executed:

compiled vars:  !0 = $a
line     # *  op                           fetch          ext  return  operands
---------------------------------------------------------------------------------
   1     0  >   ASSIGN                                                   !0, 0
         1      PRE_INC                                          $1      !0
         2      ADD                                              ~2      !0, $1
         3      ECHO                                                     ~2
         4    > RETURN                                                   null

This translates to the following equivalent script:

$a = 0;              // ASSIGN
$tmp = ++$a;         // PRE_INC
echo $a + $tmp;      // ADD, ECHO

Conclusion

By the time $a is evaluated as the left hand expression of $a + (++$a), it has already been incremented, because ++$a was evaluated first.

Obviously, this behaviour should not be relied upon; in any language for that matter.

share|improve this answer

First obvious part is that ++ have higher priority than +.

Second part is that php engine doesn't store value from first operand into another anonymous variable. So $l + ++$l is not an qeuivalent for

$a = $l;
$b = ++$l;
return $a + $b;
share|improve this answer
Sorry but operator priority has nothing to do with this. All answers mentioning operator precedence are incorrect. – Salman A Feb 8 at 13:16
So just because of I mentioned operator precedence, my answer become incorrect. Ha-ha, funny. – kirilloid Feb 8 at 13:22

As mentioned before there is a difference in x++ and ++x. You can interpret it in the way that

x++;

increments after the semicolon

and

++x;

increments on evaluation of the expression

So it seems that your expression is evaluated from right to left

echo $l + ++$l;
  1. Get $l: $l = 0
  2. Apply ++: ++$l = 1
  3. Get $l: $l = 1
  4. Apply +: $l + $l = 1 + 1 = 2
share|improve this answer

All statements are executed from right to left. So the value is first incremented than the value of your variable is = 1 so 1+1=2

share|improve this answer

protected by Neal Mar 15 '12 at 21:42

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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