Home > Backend Development > PHP Tutorial > PHP中两个表达式“与”操作是什么目的

PHP中两个表达式“与”操作是什么目的

WBOY
Release: 2016-06-06 20:35:24
Original
1164 people have browsed it

PHP中两个表达式“与”操作是什么目的。

<code>$level = 3;
$users = array('1','2','3');
$update_now = false;

foreach 循环...

(1) $level==count($users )&&$update_now = true;


(2) if($level == count($users )) $update_now = true;
</code>
Copy after login
Copy after login

(1)的目的是不是就是(2)的目的。

回复内容:

PHP中两个表达式“与”操作是什么目的。

<code>$level = 3;
$users = array('1','2','3');
$update_now = false;

foreach 循环...

(1) $level==count($users )&&$update_now = true;


(2) if($level == count($users )) $update_now = true;
</code>
Copy after login
Copy after login

(1)的目的是不是就是(2)的目的。

问题的本质其实在于&&操作的原则是&&前面表达式为真时才会继续判&&断后面表达式的真假,如果为假就不会判断&&后面的表达式。
(1)这样的写法通常是为了减少if...else的嵌套
类似的还有||操作是||前面为假时才会继续判断||后面表达式的真假,而如果||前面为真时就不会继续判断||后面表达式,js中通常用这种方式来赋值

如果第一条语句返回true就执行第二条语句,如果是false就不执行第二条语句。

是的,&& 是短路运算符,第一个操作数返回 true 则继续执行第二个操作数,否则不执行

建议还是写完整的if吧,可读性好点,哪天换了新手看不懂怎么办

不是新不新手的问题,无论如何我都支持写完整。
写代码最重要的是逻辑清晰

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