> 백엔드 개발 > PHP 튜토리얼 > PHP这个语句是什么意思呢解决思路

PHP这个语句是什么意思呢解决思路

WBOY
풀어 주다: 2016-06-13 10:05:16
원래의
845명이 탐색했습니다.

PHP这个语句是什么意思呢
!$status && $status = $pm['msgtoid'] && $pm['new'];

PHP这个语句是什么意思呢

------解决方案--------------------
!$status && $status = $pm['msgtoid'] && $pm['new'];

如果 !$status == 1 (即 $status == 0)
并且 $status = $pm['msgtoid'] (赋值后的$status不为0)
并且 $pm['new']不为0

那么。。。。。
------解决方案--------------------
!$status && $status = $pm['msgtoid'] && $pm['new'];
!$status返回一个BOOL值,表示非$status
非$status为真的时候才会执行后面的赋值操作。
$status = $pm['msgtoid'] && $pm['new'];
$pm['msgtoid'] && $pm['new']返回的也是BOOL值。
只有当$pm['msgtoid']和$pm['new']都不为空,不等于0,不等于false,不为NULL,时才返回true.
------解决方案--------------------
!$status && $status = $pm['msgtoid'] && $pm['new'];
运算顺序:
(!$status) && ($status = $pm['msgtoid'] && $pm['new']);
等于 (!$status) && $pm['msgtoid'] && $pm['new'];
这样写是将$pm['msgtoid'] && $pm['new']的运算结果在赋值给$status, 可能是为了下面程序的使用,要么就是蛋疼

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿