I found a piece of code (from one of our developer) and I was wondering why the output of this is 2?
<?php
$a = 1;
$a = $a-- +1;
echo $a;
thanks
|
|
I'll give my explanation a whirl. We're talking about a variable referencing some value off in the system. So when you define With the second line, you are doing Then you echo Edit: Testing Page |
|||||||||||
|
|
$a-- decrements the value after the line executes. To get an answer of 1, you would change it to --$a
|
|||||||||||||
|
What the?Just to clarify the other answers, what you have going on in this line:
Basically when PHP evaluates $a--, it actually returns the value of $a, and then runs the operation of decrementing it. Try this
When you run this code, you will see that the number only decrements after it has been returned. So using this logic, it's a bit more clear why
would output 2 instead of 1. A better wayPerhaps a better way, arguably more clear would be
|
|||
|
|
The above is equivalent to something like:
That actually pretty much what PHP translates that into, behind the scenes. So |
|||||
|