标签:错误 htm 三元 需要 if else turn else hid ret
有三元运算符可以很好的代替if else简单语句
但是在使用的时候发现 与 return使用的时候 需要用这种形式
错误形式: $a ? return 1 ? return 0;
正确形式: return $a ? 1 : 0;
学习源头
https://zhidao.baidu.com/question/877310536831516932.html
标签:错误 htm 三元 需要 if else turn else hid ret
原文地址:https://www.cnblogs.com/djwhome/p/8986549.html