OPERATORS IN PHP SECOND PART
OPERATORS IN PHP PRECEDENCE AMONG OPERATORS The precedence of an operator specifies how "tightly" it binds two expressions together. For example, in the expression 1 + 5 * 3, the answer is 16 and not 18 because the multiplication operator ("*") has a higher precedence than the addition operator ("+"). Parentheses can be used to force precedence if necessary. For example: (1 + 5) * 3 returns 18. When operators have equal precedence, their associativity decides how to group the operators. For example, "-" is associative on the left, so 1 - 2 - 3 is grouped as (1 [...]