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