1 2 3 4 5 6 7 8 9
<?php $number1 = 3; $number2 = 3; echo --$number1; //Decrement and then echo echo "\n"; echo $number2--; //Echo and then decrement echo "\n"; echo $number2; //Simply echo ?>
1 2 3
2 3 2