为了账号安全,请及时绑定邮箱和手机立即绑定

Laravel 如何检查至少一列值是 true 还是 false

Laravel 如何检查至少一列值是 true 还是 false

PHP
慕村225694 2023-10-21 17:18:02
我如何检查一组复选框中至少有一个被选中/为真?我在用着Laravel 5.8我现在的查询:$preferences = DB::table("preferences")    ->select('day', 'evening', 'night', 'weekend', 'full_time', 'part_time')    ->where(["user_id" => request()->user()->id])    ->get();return response(['success' => true, "preferences" => $preferences]);到目前为止,这是可行的,但“仅”返回一个包含每个值的数组。像这样:[  {    day: 0,    evening: 1,    night: 0,    weekend: 0,    full_time: 1,    part_time: 0  }]我需要某种价值来告诉我:is-checked: true/false-类似的东西。我怎样才能实现这个目标?欢迎任何建议!
查看完整描述

2 回答

?
jeck猫

TA贡献1909条经验 获得超7个赞

干得好 :)

array_filter($result, function($item) { return $item == true });


查看完整回答
反对 回复 2023-10-21
?
胡说叔叔

TA贡献1804条经验 获得超8个赞

在集合上尝试这个

$collection->filter(function ($value, $key) {
    return $value == true;
});


查看完整回答
反对 回复 2023-10-21
  • 2 回答
  • 0 关注
  • 110 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信