thinkphp-查询数据-基本查询

2023-06-07,,

查询单个数据

Db::table('think_user')->where('id',1)->find();

返回值

find 方法查询结果不存在,返回 null

查询数据

Db::table('think_user')->where('status',1)->select();

返回值

select 方法查询结果不存在,返回空数组

《thinkphp-查询数据-基本查询.doc》

下载本文的Word格式文档,以方便收藏与打印。