多字段相同条件的AND查询可以简化为如下方式: Db::table('think_user') ->find(); 多字段相同条件的查询可以简化为如下方式: ->where('name|title','like','%thinkphp') ->find(); 生成的sql语句类似于下面: