This commit is contained in:
2022-08-19 17:36:44 +08:00
parent 4751739f3c
commit e7dabc7569

View File

@@ -124,17 +124,6 @@ function getAllChild($categories, $categoryId)
return $arr; return $arr;
} }
function getSonNode($pid = 0, $SonNode = array())
{
$SonNode[] = $pid;
foreach ($data as $k => $v) {
if ($v['source_member'] == $pid) {
$SonNode = $this->getSonNode($data, $v['member_id'], $SonNode);
}
}
unset($SonNode[0]);
return $SonNode;
}
//获取专利和论文 //获取专利和论文
function getPatent($take, $type = '') function getPatent($take, $type = '')