标签:init getchild 用户数 getch ast error userinfo 数组 each
1.use fast\Tree;
2.
// 判断同线账号
$alluser = Userinfo::all(); //查询所有用户数据
$tree = Tree::instance();
$tree->init($alluser);
$myteam = $tree->getChildren($miner_id); // 得出下线的pid集
$myteampid = $tree->getParent($miner_id);// 得出上线的pid集
// 合并数组
$arr = array_merge($myteam,$myteampid);
foreach($arr as $key => $row){
$aaa[] = $row[‘pid‘];
}
// 判断受赠者的pid是否存在该数组中
if (!in_array($touser[‘pid‘], $aaa)){
return $this->error(‘非同线账号‘);
}
// 判断同线账号end
标签:init getchild 用户数 getch ast error userinfo 数组 each
原文地址:https://www.cnblogs.com/roseY/p/9438533.html