ecmall中的 $a && $b = statement 理解

在php中若是是 php

&$b //這裏是引用傳址 file

$a & $b //這裏是位運算 plugin

$a && $b //這裏是邏輯運算 引用

在ecmal中像下面這們的語句不少 co

is_file($conf_file) && $plugins = include($conf_file); 位運算

它至關於

if(is_file($conf_file)){

include($conf_file);

$plugins = include($conf_file);

}

也就是說 $plugins 爲做爲include執行結果返回的標誌,而is_file($conf_file)站定是否執行下面的語句

相關文章
相關標籤/搜索