02-22
                                0
                            
                            TP5 数据库操作
官方链接 :
https://www.kancloud.cn/manual/thinkphp5/135176
查询一个数据使用:
Db::table('think_user')->where('id',1)->find();查询数据集使用:
Db::table('think_user')->where('status',1)->select(); 
                            