laravel中empty(),is_null() 以及isEmpty()
生活随笔
收集整理的這篇文章主要介紹了
laravel中empty(),is_null() 以及isEmpty()
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
PHP中
empty()
empty() 函數用于檢查一個變量是否為空。
if(empty($result->order)){//操作 }is_null()
is_null() 函數用于檢測變量是否為 NULL。
$code = Input::get('code');if (!is_null($code)) {return Response::json(['status' => 1]);} else {return Response::json(['status' => 0]);}laravel 中
isEmpty()
在使用 Laravel Eloquent 模型時,我們要判斷取出的結果集是否為空時,以上兩種方法無效,但是laravel提供了isEmpty()給我們
$select = Location::select('…')->where(…)->get() //判斷查詢結果是否為空 if(isEmpty($select)){//操作 }else{//操作 }轉載于:https://www.cnblogs.com/gggggggxin/p/10062867.html
總結
以上是生活随笔為你收集整理的laravel中empty(),is_null() 以及isEmpty()的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Leetcode264. Ugly Nu
- 下一篇: 支付宝国泰基金是什么