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

Laravel 集合过滤器“A%”就像我们对“A%”这样的地方所做的那样

Laravel 集合过滤器“A%”就像我们对“A%”这样的地方所做的那样

PHP
Qyouu 2023-07-15 17:22:26
我想过滤一堆以字符开头,后跟通配符*的名称查询我可以通过查询来实现这一点,例如return $q->where('name', 'like', $name . '%');由于我已缓存 modal::class,因此我不想重复它,而是使用filter()或其他可以帮助我获得预期结果的方法。集合过滤器()return $collection->filter(function ($q) use ($name) {    return false !== stripos($q['name'], $name); // this returns all the names that contains $name character});我想要实现的是过滤()以特定字符开头然后是“%”的名称 -$name . '%'例如'A%'
查看完整描述

1 回答

?
慕的地10843

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

你可以使用这个Str::startsWith助手。

use Illuminate\Support\Str;


$result = Str::startsWith('This is my name', 'This');


// true

应用到你的代码,它应该是


use Illuminate\Support\Str;


return $collection->filter(function ($q) use ($name) {

    return Str::startsWith($q['name'], $name);

});

对于 5.7 之前的 laravel 版本,请改用starts_withhelper。

$result = starts_with('This is my name', 'This');


// true


查看完整回答
反对 回复 2023-07-15
  • 1 回答
  • 0 关注
  • 72 浏览

添加回答

举报

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