Laravel-5 相當於'LIKE' 運算子(Eloquent)
在Laravel-5 中,Eloquent ORM 提供了一個指定的 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中文網其他相關文章!