模型查询

可以快速上手的开发文档

#模型查询
模型查询

laravel 模型查询按照whereIn排序的示例

实例如下所示:$ids=[5,7,3,1,2];$data=Content::whereIn('id',$ids)->select('id')->get();//查询结果是想..