$a ?? 0 等同于 isset($a) ? $a : 0。$a ?: 0 等同于 $a ? $a : 0。empty: 判断一个变量是否为空(null、false、00、0、’0′、』这类,都会返回true)。isset: 判断一个变量是否设置(值为false、00、0、’0′、』这类,也会返回true)。 Last modification:September 19, 2020 © Allow specification reprint Support Appreciate the author AliPayWeChat Like 527 如果觉得我的文章对你有用,请随意赞赏
Comment here is closed