ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
~~~php //本级别的id $this->getSup($member['id']); ~~~ ``` //获取所有下级 public function getSup($id,$n = 0) { global $_W; global $_GPC; $res = pdo_get('ewei_shop_member', array('agentid' => $id)); if ($res['id']!=0) { if($n){ $ids .= "," . $res['id']; }else{ $ids =$res['id']; } $n++; $ids .= $this->getSup($res['id'],$n); } return $ids; } ```