gpt4 book ai didi

Laravel Blade - 检查数据数组是否具有特定键

转载 作者:行者123 更新时间:2023-12-04 09:57:47 26 4
gpt4 key购买 nike

我需要检查数据数组是否有特定的键,我是这样试的:

@if ( ! empty($data['currentOffset']) )
<p>Current Offset: {{ $currentOffset }} </p>
@else
<p>The key `currentOffset` is not in the data array</p>
@endif

但我总是收到 <p>The key currentOffset is not in the data array</p> .

最佳答案

您可以使用 @isset :

@isset($data['currentOffset'])
{{-- currentOffset exists --}}
@endisset

关于Laravel Blade - 检查数据数组是否具有特定键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48100830/

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