Определите, какой уровень chlid php
Я пытаюсь получить отношения родительского ребенка и успешно получить это. Но я застрял, как определить, каков уровень ребенка. Вот мой код public function getDownline($userid = null) { $category_data = array(); $where = array('parent_id' => $userid); $this->db->where($where); $category_query = $this->db->get('users')->result(); $category_data = array(); foreach ($category_query as $category) { $category_data[$category->id] = array($category); $children = $this->getDownline($category->id); if ($children) […]