统计 赋值

    //统计
    public static function is_set_or_plus(&$val,$num){
        if(!isset($val))
        {
            $val= 0;
        }
        $val+=$num;
        
    }
    //赋值
    public static function is_set_or_no(&$val,$value){
        if(!isset($val))
        {
            $val= $value;
        }
    }

 

posted on 2017-09-18 16:07  coderWilson  阅读(135)  评论(0编辑  收藏  举报

导航