thinkphp5中where条件使用数组表达式

Db::table('think_user')
->where([
'name' => ['like','thinkphp%'],
'title' => ['like','%thinkphp'],
'id' => ['>',0],
'status'=> 1
])
->select();php

相关文章
相关标签/搜索