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

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

转载于:https://www.cnblogs.com/twilight-sparkle/p/10112869.html

你可能感兴趣的:(thinkphp5中where条件使用数组表达式)