查询单个数据
Db::table(‘think_user‘)->where(‘id‘,1)->find();
返回值
find 方法查询结果不存在,返回 null
查询数据集
Db::table(‘think_user‘)->where(‘status‘,1)->select();
返回值
select 方法查询结果不存在,返回空数组
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1896667
原文地址:http://suyanzhu.blog.51cto.com/8050189/1896667