Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。












想改善这个问题吗?更新问题,以使为on-topic

6年前关闭。



Improve this question





我想将php中的一个小条件转换为三元运算符。

if($i==2) {
    $third="third";
    $i=0;
} else {
    $third="";
}


如何将其转换为三元运算符?
谢谢。

最佳答案

您可以使用以下格式:

$i==2 ? ($third = "third" AND $i = 0) : ($third="");

10-08 13:50