ThinkChat3.0新版上线,打造企业超级智能体和OPC神器,直接交付工作成果而非仅仅是给出答案,送30W Token,即刻开启你的AI之旅 广告
~~~php //本级别的id $this->getSup($member['id']); ~~~ ~~~php public function getSup($id,$n = 0) { global $_W; global $_GPC; $res = pdo_get('ewei_shop_member', array('id' => $id)); //有上级 if ($res['agentid']!=0) { if($n){ $ids .= "," . $res['agentid']; }else{ $ids =$res['agentid']; } $n++; $ids .= $this->getSup($res['agentid'],$n); } return $ids; } ~~~