php根据子类查找对应的父类,PHP查询子集菜单、父级(子类找父类,父类找子类)...
/*** 通过父类ID获取所有的子类* @param int $pid 父id* @param array $category 分类集合* @return array*/function recursiveCategory(int $pid,array $category){$data = [];foreach ($category as $item){if($item['pid']==$pid)...