Increment/decrement Operators
example name effect
++$a Pre-increment Increments $a by one, then returns$a.
$a++ Post-increment Returns $a, then increments $a by one.
$a Pre-decrement Decrements $a by one, then returns $a.
$a Post-decrement Returns $a, then decrements $a by one.
Related examples in the same category