Heim >Backend-Entwicklung >PHP-Tutorial >php中的逻辑运算符有哪些

php中的逻辑运算符有哪些

PHPz
PHPzOriginal
2016-06-06 20:42:098973Durchsuche

php中的逻辑运算符有:1、“and”,表示“与”;2、“or”,表示“或”;3、“xor”,表示“异或”;4、“&&”,表示“与”;5、“||”,表示“或”;6、“!”,表示“非”。

php中的逻辑运算符有哪些

php 逻辑运算符有哪些?

php 逻辑运算符

运算符 名称 描述 实例
x and y 如果 x 和 y 都为 true,则返回 true x=6
y=3
(x < 10 and y > 1) 返回 true
x or y 如果 x 和 y 至少有一个为 true,则返回 true x=6
y=3
(x==6 or y==5) 返回 true
x xor y 异或 如果 x 和 y 有且仅有一个为 true,则返回 true x=6
y=3
(x==6 xor y==3) 返回 false
x && y 如果 x 和 y 都为 true,则返回 true x=6
y=3
(x < 10 && y > 1) 返回 true
x || y 如果 x 和 y 至少有一个为 true,则返回 true x=6
y=3
(x==5 || y==5) 返回 false
! x 如果 x 不为 true,则返回 true x=6
y=3
!(x==y) 返回 true
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn