没有“更好的”,但是更常见的是
||。它们具有不同的优先级,
并且
||可以像通常期望的那样工作。
另请参阅:逻辑运算符( 以下示例从此处获取 ):
// The result of the expression (false || true) is assigned to $e// Acts like: ($e = (false || true))$e = false || true;// The constant false is assigned to $f and then true is ignored// Acts like: (($f = false) or true)$f = false or true;
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)