What's the difference between ++$i and $i++ in PHP?
|
|
|
++$i is pre-increment whilst $i++ post-increment.
For further clarification, post-incrementation in PHP has been documented as storing a temporary variable which attributes to this 10% overhead vs. pre-incrementation. |
|||||||||||||||||||
|
|
|
|||
|
|
|
Here's an example:
There is sometimes a slight preformance cost for using
You're really doing this:
|
|||
|
|
|
|||
|
|
It's probably best-illustrated by an example... Post-increment:
Pre-increment:
|
|||
|
|
|
To explain jldupont's point:
|
|||
|
|
|
Difference is:
|
|||
|
|
|
Short answer:
Long answer: If you think a little about it, how you would implement those yourself, you will probably realize why prefix is faster. Truth to be told, postfix is actually (often) implemented using prefix:
Avoid postfix unless you have a specific reason not to. The difference in speed can be quite a lot for complex datatypes. I actually looked this up a few days ago. Heres my source. |
|||
|
|
|
Another way of looking at pre and post incrementing is that it's shorthand for combining 2 statements. Pre-incrementing
Post-incrementing
|
||||
|
|
|
in this case there is no difference:
but:
|
||||
|
|