thinkphp Db类where中用OR怎么写。
时间: 2023-03-30 22:02:40 浏览: 161
PHP封装类似thinkphp连贯操作数据库Db类与简单应用示例
您可以使用Db类的where方法,然后在where方法中使用数组来表示OR条件,例如:
$map['_complex'] = array(
'name' => 'thinkphp',
'title' => 'thinkphp',
'_logic' => 'OR'
);
Db::name('table')->where($map)->select();
这样就可以实现在where中使用OR条件了。
阅读全文