天天看点

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";

        }      

你要保守你心,胜过保守一切。

作者:刘俊涛的博客​​

继续阅读