gpt4 book ai didi

php - 查询在 laravel 中返​​回错误的输出结果

转载 作者:太空宇宙 更新时间:2023-11-03 11:37:14 25 4
gpt4 key购买 nike

我想将单词数组与包含 2000 多个条目的数据库表的字段进行比较。例如用户输入一个字符串“这很好”它会将字符串分解为数组,然后将单词与数据库表进行匹配,例如表中存在 good 则返回 good 关键字。这是我的代码

$cmnt = $request['comment'];
$parse = explode(' ',$cmnt);
$length = count($parse);
for($i = 0; $i < $length ; $i++)
{
$keyword = Rate::where('keyword',$parse[$i]);
}
if ($keyword != null)
{
dd($keyword);
}

这是我的输出 My output is displaying the keyword like this in the picture

最佳答案

你在每个循环迭代中都写了 $keyword 的值,这样做

$cmnt = $request['comment'];
$parse = explode(' ',$cmnt);
$parse = array_unique($parse);
$keyword = Rate::whereIn('keyword',$parse);
dd($keyword);

关于php - 查询在 laravel 中返​​回错误的输出结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44861124/

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