我想知道是否有更好的方法来写这个?我知道答案可能是否定的。
$variable = aMethodToGetSomeValue();
$result = ($variable) ? $variable : null/false/0;
基本上,我想将结果设置为$variable
if $variable
is not false,否则按定义返回。
上面的代码有效,问题是是否有更好的方法来编写速记?由于我的用例是$variable
对数据库的查询。
类似的问题,但不是我真正要求的我相信..?