<?php$m = 15;$n = 5;$t = 7;echo ($m % ($n) + $t);?>
The innermost bracket is evaluated first, since it covers only variable n it is as good as not using brackets.
Previous Question Next Question
Your comments will be displayed only after manual approval.