💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
whereor() ### 说明 ~~~ Query whereor(string | array $condition, $parameters = array()) ~~~ 与 where 一样使用,不同的是本函数是以 OR 来连接 ### 示例 ~~~ $query = load()->object('query'); $row = $query->from('users', 'u')->where('sex', '1')->whereor('uid', 2)->get(); //生成SQL如下 //SELECT * FROM users AS U WHERE sex = '1' OR uid = '2' LIMIT 1 ~~~