When we talked about PHP logical operators earlier, we mentioned the priority of PHP operators. The so-called operator priority refers to which operator in the expression is calculated first and which one is calculated later. It seems that the result
of the expression 1 + 5 * 3 is 16 instead of 18 because the multiplication sign ("*") has a higher priority than the plus sign ("+"). If necessary, parentheses can be used to force a priority change. For example: (1 + 5) * 3 has the value 18.
The rules followed by PHP operators in operations are: operations with higher priority are executed first, and operations with lower priority are executed later. If they have the same priority, they are executed in order from left to right, for example , "-" is a left-joint, then 1 - 2 - 3 is equivalent to (1 -
2) - 3 and the result is -4. On the other hand, "=" is a right-joint, so $a = $b = $c is equivalent to $a = ($b = $c).
The operators in the brackets are executed first. The use of brackets, even if it is not necessary, clearly indicates the order of operations through the pairing of brackets, rather than relying on operator priority and associativity. To decide, it can improve the readability of the code.
The table lists operators from high to low precedence. Operators in the same line have the same precedence, and the direction in which they are combined determines the order of evaluation.
Combining direction | Operator | Additional information |
---|---|---|
None | clone new | clone and new |
left | [ | array () |
Right | ** | Arithmetic operator |
Right | ##++ -- ~ (int) ‐ #(string) (array) (object) ’ ’s ’ s ’ ‐ ‐ P P S P C P C P C C P S C P S C S P S C S P S P S P S P S P S P S P S P S P S P S P S P D S N M /DecreasingNoneinstanceof | Type |
right | ! | Logical operator |
left | * | /% |
Arithmetic operator | left+ | -. |
Arithmetic operators and string operators | ##left >> | Bitwise Operator |
None | >= | |
None== != === | !== | ;=>|
Comparison operator | left&bit operation Symbols and references left | ^ |
bit operators | left | | |
bit operator | left | && |
Logical operator | ##left | || |
left | ?? | |
left | ? : | |
Right | = | |
-= | *= **= | ‐ ##&= |
^= | ‐#Assignment operatorleftandLogical operatorleftxorlogical operatorleft | or|
With so many priority levels, it is unrealistic to remember them all clearly. Yes, it’s not necessary. If the expression you write is very complex and contains a lot of running symbols, don’t use parentheses. Think of it like this: | ||
This will reduce the possibility of logic errors | Sometimes using parentheses can enhance the readability of the code. For example, the following: <?php $a = 3 * 3 % 5; // (3 * 3) % 5 = 4 //三元运行的结合 $a = true ? 0 : true ? 1 : 2; // (true ? 0 : true) ? 1 : 2 = 2 $a = 1; $b = 2; $a = $b += 3; // $a = ($b += 3) -> $a = 5, $b = 5 ?> |
The above is the detailed content of Detailed explanation of PHP operator priority order. For more information, please follow other related articles on the PHP Chinese website!

在c语言中,没有开根号运算符,开根号使用的是内置函数“sqrt()”,使用语法“sqrt(数值x)”;例如“sqrt(4)”,就是对4进行平方根运算,结果为2。sqrt()是c语言内置的开根号运算函数,其运算结果是函数变量的算术平方根;该函数既不能运算负数值,也不能输出虚数结果。

在Java中,“%”是取余的意思,是一个二元算术运算符,可进行除法运算并获取余数,语法“操作数1 % 操作数2”。取余运算符“%”的操作数通常是正整数也可以是负数甚至是浮点数,如果负数参与此运算,则结果的正负取决于前面一个数是正数还是负数。

对于Golang开发者来说,“invaliduseof…operator”是一个常见的报错。这个报错通常会在使用变长参数函数时出现。它在编译时就会被检测出来,并指出哪些部分有问题。这篇文章将介绍如何解决这个报错。一、什么是变长参数函数变长参数函数也被称为可变参数函数,是Golang语言中的一种函数类型。使用变长参数函数可以像如下方式定义多个

在php中,“==”符号是一个比较运算符,可以比较两个操作数是否相等,语法“操作数1 == 操作数2”。“==”运算符会比较、并测试左边的变量(表达式或常量)是否与右边的变量(表达式或常量)具有相同的值;它只比较变量的值,而不是数据类型。如果两个值相同,则返回true值;如果两个值不相同,则返回false值。

在php中,可以使用“%”和“==”运算符来判断两个数能否整除;只需要使用“%”运算符将两个数相除获取余数,再使用“==”运算符判断获取的余数是否为0即可,语法“数1 % 数2 == 0”,如果为0则能整除,如果不为0则不能整除。

python中的魔法方法是一些可以让你对类添加“魔法”的特殊方法,它们经常是两个下划线包围来命名的。Python的魔法方法,也称为dunder(双下划线)方法。大多数的时候,我们将它们用于简单的事情,例如构造函数(init)、字符串表示(str, repr)或算术运算符(add/mul)。其实还有许多你可能没有听说过的但是却很好用的方法,在这篇文章中,我们将整理这些魔法方法!迭代器的大小我们都知道__len__方法,可以用它在容器类上实现len()函数。但是,如果您想获取实现迭代器的类对象的长度

在Go语言中,运算符按照优先级从高到低的顺序进行计算。常见的运算符的优先级顺序:1、括号:()(最高优先级,用于强制改变运算顺序);2、单目运算符;3、乘性运算符;4、加性运算符;5、移位运算符;6、按位运算符;7、比较运算符;8、逻辑运算符;9、条件运算符(三元运算符);10、赋值运算符等等。

使用按位左移运算符,从右侧移动一个或多个零位。不考虑最左边的位。示例您可以尝试运行以下代码来了解如何使用JavaScript按位左移运算符。<!DOCTYPEhtml><html> <body> <script> document.write("B


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
