首页 >后端开发 >php教程 >如何在 Laravel-5 Eloquent 中使用 LIKE 运算符进行搜索?

如何在 Laravel-5 Eloquent 中使用 LIKE 运算符进行搜索?

Patricia Arquette
Patricia Arquette原创
2024-10-29 03:50:29805浏览

How to Use the LIKE Operator for Searching in Laravel-5 Eloquent?

Laravel-5 相当于 'LIKE' 运算符(Eloquent)

在 Laravel-5 中,Eloquent ORM 提供了一个指定的搜索运算符使用 LIKE 语句。但是,问题中提供的代码采用了 'orWhereLike' 方法,该方法在 Laravel-5 中无法识别。

为了达到所需的结果,应使用 'orWhere' 与 'like' 的组合:

<code class="php">BookingDates::where('email', Input::get('email'))
    ->orWhere('name', 'like', '%' . Input::get('name') . '%')->get();</code>

就 SQL 而言,上面的代码生成以下语句:

<code class="sql">select * from booking_dates where email='[email protected]' or name like '%John%'</code>

要验证生成的 SQL 语句,可以使用 dd(DB::getQueryLog() ) 函数,它记录所有执行的查询并允许您在开发过程中检查其内容。

以上是如何在 Laravel-5 Eloquent 中使用 LIKE 运算符进行搜索?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn