diff --git a/language/operators.xml b/language/operators.xml index b6d626180f..b54f061e1c 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -213,7 +213,12 @@ For operators of equal precedence, left associativity means that evaluation proceeds from left to right, and right associativity means - the opposite. + the opposite. For operators of equal precedence that are non-associative + those operators may not associate with themselves. So for example, the + statement 1 < 2 > 1, is illegal in PHP. Whereas, + the statement 1 <= 1 == 1 is not, because the + T_IS_EQUAL operator has lesser precedence than the + T_IS_SMALLER_OR_EQUAL operator. Associativity