From 6586f45780cc2d973791ab62d331ae3fd5f31e2e Mon Sep 17 00:00:00 2001 From: Joe Watkins Date: Mon, 9 Dec 2013 11:15:38 +0000 Subject: [PATCH] fix #66164 make operator precedence table more readable (commas and "and") git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@332319 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/operators.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/language/operators.xml b/language/operators.xml index e854e347ed..75da567c3e 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -89,7 +89,7 @@ right - ++ -- ~ (int) (float) (string) (array) (object) (bool) @ + ++, --, ~, (int), (float), (string), (array), (object), (bool), and @ types and increment/decrement @@ -110,35 +110,35 @@ left - * / % + *, /, and % arithmetic left - + - . + +, -, and . arithmetic&listendand; string left - << >> + << and >> bitwise non-associative - < <= > >= + <, <=, >, and >= comparison non-associative - == != === !== <> + ==, !=, ===, !==, and <> comparison @@ -188,7 +188,7 @@ right - = += -= *= /= .= %= &= |= ^= <<= >>= => + =, +=, -=, *=, /=, .=, %=, &=, |=, ^=, <<=, >>=, and => assignment