假设我们在一个类中有这个方法:
public static function example($s, $f = false){ (static::$i['s'] === null or $f) and static::$i['s'] = $s; return new static; }
您能给我任何提示吗?这行代码的含义是什么?
(static::$i['s'] === null or $f) and static::$i['s'] = $s;
它是一个条件语句吗?或者类似三元运算符的东西? 谢谢
翻翻过去那场雪