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中文网其他相关文章!