gpt4 book ai didi

php - Laravel:whereIn 变量

转载 作者:可可西里 更新时间:2023-11-01 00:28:56 27 4
gpt4 key购买 nike

我试图在变量 $sections 中收集属于发生在它们身上的部分的所有记录。但只有第 1 部分的那些人才会接我。有什么建议吗?

$sections = '1,2,3';

$data = News::where('active', '1')
->whereIn('section_id', [$sections])
->get();

如果我在查询中用 $sections 替换值,这会起作用,但如果我使用变量 $sections,它就不起作用。

谢谢。

最佳答案

当您使用 whereIn() 时,您必须传递一个数组而不是字符串:

$sections = explode(',', '1,2,3');

关于php - Laravel:whereIn 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48420800/

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