Laravel框架——增删改查
Posted 偏执Code
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel框架——增删改查相关的知识,希望对你有一定的参考价值。
增:
删:
改:
查:
查询一条信息:
// 通过主键获取模型... model::find(1); // 获取匹配查询条件的第一个模型... model::where(‘id‘, 1)->first();
//如果有时候你可能想要在模型找不到的时候抛出异常(如果没找到跳转到404页面) model::findOrFail(1); model::where(‘id‘,‘>‘,0)->firstOrFail();
获取聚合:例如count
、sum
、max
model::where(‘active‘, 1)->count(); model::where(‘active‘, 1)->max(‘col‘);
判断查询结果是否为空,并且转成数组
$result = Model::where(...)->get(); //不为空则 if ($result->first()) { } if (!$result->isEmpty()) { } if ($result->count()) { }
多条件查询:
$res = member::where(‘id‘,‘>‘,0)->where(‘username‘,‘aaa‘)->get(); or $res = member::where([[‘id‘,‘>‘,0],[‘username‘,‘aaa‘]])->get();
以上是关于Laravel框架——增删改查的主要内容,如果未能解决你的问题,请参考以下文章