where("uid",$uid)->where("show_template_id",$id)->count(); if($count<=0){ $ocount = $this->where("uid",$uid)->count(); $r = $this->insert([ "uid" => $uid, "show_template_id" => $id, "start_time" => time(), "end_time" => time()+100*365*24*60*60,//100年 "is_default" => $ocount>0 ? 0 : 1, ]); } return true; } }