
TP
Wiley_L
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
thinkphp5 中 where条件 or,and 同时使用
$where['is_del'] = 0; $whereor['a'] = 1; $whereor['b'] = 2; $whereor['c'] = 3; $whereor['d'] = 4; $this->user->where($where) ->whereR...原创 2019-12-18 17:27:28 · 4958 阅读 · 0 评论 -
ThinkPHP 中 where条件 or,and 同时使用
('a'=1 and 'b'=2) or ('c'=3 and 'd'=4) and 'e'=5$where_1['a'] = 1;$where_1['b'] = 2;$where_2['c'] = 3;$where_2['d'] = 4;$where_main['_complex'] = array( $where_1, $where_2, '_logic' =&...原创 2018-05-29 17:37:15 · 22820 阅读 · 5 评论 -
ThinkPHP 关闭 APP_DEBUGE ,验证码报错
打开Common\Conf\config.php'URL_CASE_INSENSITIVE' => false, // 默认false 表示URL区分大小写 true则表示不区分大小写 修改为false,并删除 data/runtime/Common~runtime.php 这个文件,重新刷新即可...原创 2019-02-19 09:37:41 · 534 阅读 · 0 评论