Mega Code Archive
Categories
/
Php
/
Operator
Changing the default precedence using parentheses
echo 2 * 3 + 4 + 1; echo 2 * (3 + 4 + 1); ?>