Home > Backend Development > PHP Tutorial > 看一下这段代码如何修改!

看一下这段代码如何修改!

WBOY
Release: 2016-06-13 12:16:23
Original
914 people have browsed it

求助看一下这段代码怎么修改!!!!
 //执行正常搜索
///*
            if (isset($goods_param['class'])) {
$condition['gc_id_'.$goods_param['class']['depth']] = $goods_param['class']['gc_id'];
            }
//*/
            if (intval($_GET['b_id']) > 0) {
                $condition['brand_id'] = intval($_GET['b_id']);
            }
            if ($_GET['keyword'] != '') {
                $condition['goods_name|goods_jingle'] = array('like', '%' . $_GET['keyword'] . '%');
            }
            if (intval($_GET['area_id']) > 0) {
                $condition['areaid_1'] = intval($_GET['area_id']);
            }
            if ($_GET['type'] == 1) {
                $condition['is_own_shop'] = 1;
            }
            if ($_GET['gift'] == 1) {
                $condition['have_gift'] = 1;
            }
            if (isset($goods_param['goodsid_array'])){
                $condition['goods_id'] = array('in', $goods_param['goodsid_array']);
            }
            $goods_list = $model_goods->getGoodsListByColorDistinct($condition, $fields, $order, self::PAGESIZE);
        }

现在的问题是第一个if中$condition这个是不是只查询一个条件gc_id,我想让他同时查询gc_id和gc_id1的,怎么修改啊大神们,我菜鸟一个,刚刚开始学习呀
------解决思路----------------------
因为不同的架构里面的处理组合where条件是不同的,所以需要看底层的where处理,不过我感觉一个开源产品应该会有对应的操作
http://wenku.baidu.com/link?url=Wak60lv0ReREdfCBMNFvsRmM0kFpUIwumfydaw0VKvnbM6APvSibwXSnmlQcxM_Xa0YqIgQitFahgwbr_5GsheP1f4FKT-46mXTLYRVs0EO
这里24、25页

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template