This article introduces operators. This is PHP ?:Run. It is also called the ternary or ternary operator. Friends who need to learn can refer to it.
The very simple ternary operator is also what we often talk about? : Operator
代码如下 | 复制代码 |
$a=1;$b=2;$c=3;$d=4; echo $a<$b?'xx':$a<$c?'yy':$a<$d?'zz':'oo'; ?> |