02.2a: Operator Precedence
PHP offers many mathematical operators. In this lesson, we look at how to create comments, some basic mathematical operators and operator precedence.
<?php # Comment line // Comment line /* Comment multi line + - * / () */ $c = (1 + 2) * 3; print "$c\n"; ?>