TP框架中多条件筛选

        $pid =I('pid');

        $year = I('year');

        $productType = I('productType');

        //搜索条件 where

        $_where = "cinfo.uid=$uid and cg.type=1 and cg.status=1";

        if($pid){

            $_where .= " and c.pid=$pid";

        }

        if($year){

            $_where .= " and c.year=$year";

        }

        if($productType){

            $_where .= " and c.productType=$productType";

        }

原文地址:https://www.cnblogs.com/lovebing/p/7639793.html