本文实例讲述了laravel5.6框架操作数据curd写法(查询构建器)。分享给大家供大家参考,具体如下:
laravel5.6 数据库操作-查询构建器
<"container"> @foreach ($users as $user) {{ $user->name }} @endforeach </div> {{ $data->links() }} //原生分页写法 $page = 2; $pageSize = 1; $offset = ($page - 1) * $pageSize; $result = DB::table('picasa') ->where('title', 'like', '%'.$title.'%') ->offset($offset) ->limit($pageSize) ->get(); //返回数据视图文件 return $this->view('index', ['result' => $result]); } }
groupBy 对查询结果进行分组出现问题
当select和groupBy中列表不一致时候会报错。mysql从5.7以后,默认开启group by的严格模式。
解决方法:找到config/database"htmlcode">
$booked = DB::table('booked_user') ->select('game_id', DB::raw('count(*) as total')) ->groupBy('game_id') ->get();
开启sql查询日志
DB::connection()->enableQueryLog();//开启QueryLog $data = DB::table('users')->select('id','name', 'email')->get();//执行sql dump(DB::getQueryLog());//sql语句和查询时间
写入日志信息
八种日志级别:emergency、alert、critical、error、warning、 notice、info 和 debug
默认日志存放位置: /storage/logs/laravel.log
引用: use Illuminate\Support\Facades\Log;
Log::emergency(string $message, array $context = []); Log::alert(string $message, array $context = []); Log::critical(string $message, array $context = []); Log::error(string $message, array $context = []); Log::warning(string $message, array $context = []); Log::notice(string $message, array $context = []); Log::info(string $message, array $context = []); Log::debug(string $message, array $context = []);
laravel5.6 操作数据ORM
更多关于Laravel相关内容感兴趣的读者可查看本站专题:《Laravel框架入门与进阶教程》、《php优秀开发框架总结》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于Laravel框架的PHP程序设计有所帮助。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“laravel5.6框架操作数据curd写法(查询构建器)实例分析”评论...