zl程序教程

您现在的位置是:首页 >  其他

当前栏目

PHP三元运算符

2023-03-07 09:01:48 时间

1. 三元运算符语法糖总结


三元运算符的简化形式

$a ?: 0 等同于 $a ? $a : 0

2. PHP5.3.0 引入 ?:


PHP5.3.0 更新公告 : https://www.php.net/releases/5_3_0.php

3. PHP7.0.0 引入 ?? (NULL 合并运算符)


PHP7.0 新特性 https://www.php.net/manual/zh/migration70.new-features.php

站长源码网