thinkphp thinkphp5 多字段相同条件的OR查询 由jkloozx 2018年 6月 23日 多字段相同条件的OR查询可以简化为如下方式: Db::table('think_user') ->where('name|title','like','%thinkphp') ->find(); 数组形式查询可以这样写: $where = [ 'column_a|column_b' => $value, ];