首页 > 代码库 > php中or ,and的作用及使用
php中or ,and的作用及使用
关于or,and的使用,查资料得知:and相当于then,or相当于else
下面通过举例来理解这两个关键字的使用:
比如:【1】
$isRight or $a=1000;
他与下面这段代码是等价的:
if(isRight==true) { } else { $a=1000; }
【2】
$update and $db_factory=1;
等价于:
if($update==true) { $db_factory=1; }
【3】
$aa and $b=1 or $c=1
等价于:
if ($aa) { $b=1 } else { $c=1 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。