Home > Backend Development > PHP Tutorial > php中的逻辑运算符有哪些

php中的逻辑运算符有哪些

PHPz
Release: 2020-09-05 10:44:58
Original
8967 people have browsed it

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
Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template