<?php$p = 3; $q = 4;$r = $p++ + ++$q;echo $r;?>
Post increment of p is done after expression evaluation.
Previous Question Next Question
Your comments will be displayed only after manual approval.