gpt4 book ai didi

PHP:不使用 else 使用简短的 if 语句?

转载 作者:可可西里 更新时间:2023-11-01 00:18:31 25 4
gpt4 key购买 nike

我是 if 简短 if 版本的粉丝,例如:

($thisVar == $thatVar ? doThis() : doThat());

不过我想删除 else 语句,例如:

($thisVar == $thatVar ? doThis());

但是,它不会起作用。有没有我错过的方法?

最佳答案

没有 else 就不能使用它。但你可以试试这个:

($thisVar != $thatVar ?: doThis());

if ($thisVar == $thatVar) doThis();

关于PHP:不使用 else 使用简短的 if 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48777723/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com