gpt4 book ai didi

php - 如何将 isset 和运算符用作一个三元语句

转载 作者:行者123 更新时间:2023-12-01 13:45:48 26 4
gpt4 key购买 nike

有没有一种方法可以在三元语句中进行三元语句。例如

@if (isset($checking))
<input type="radio" id="box" name="form" value="10"
{{$checking->myvalue == 10.0 ? 'checked' : ''}}/>
<label class="sister" for="boxwindow" title="myvalue_10" </label>
@else
<input type="radio" id="box" name="form" value="10"/>
<label class="sister" for="boxwindow" title="myvalue_10" </label>
@endif

但是我希望它看起来像这样:

<input type="radio" id="box" name="form" value="10"
isset($checking->myvalue) == 10.0 ? 'checked' : ''}}/>
<label class="sister for="boxwindow" title="myvalue_10" </label>

这样我就不必在 else 语句中重复代码。这可能吗?

只是想让你知道我的目标是检查单选按钮,但前提是动态数字 isset AND 与给定值匹配。

最佳答案

你可以尝试这样的事情:

{{ isset($checking->myvalue) && $checking->myvalue == 10 ? 'checked' : '' }}

关于php - 如何将 isset 和运算符用作一个三元语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36348995/

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