Source Code:
(back to article)
<?php $i = 5; echo ++$i; // returns 6 echo "\r\n"; $i = 5; echo $i++; // returns 5
Result:
Report an issue