$a = 0;echo $a??2; //相当于 isset 0echo $a?:2; //相当于 !empty 2
代码
@array_intersect($param['type']??[], [0, 2, 4, 5]) ?: [0, 2, 4, 5];
本文共 189 字,大约阅读时间需要 1 分钟。
$a = 0;echo $a??2; //相当于 isset 0echo $a?:2; //相当于 !empty 2
代码
@array_intersect($param['type']??[], [0, 2, 4, 5]) ?: [0, 2, 4, 5];
转载于:https://my.oschina.net/shunshun/blog/3014517