91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

目錄tree在頁面上顯示

發布時間:2020-05-06 08:36:39 來源:網絡 閱讀:41670 作者:jack20039 欄目:web開發
//完整的目錄結構
    function get_dir_tree($uid,$from_dir=0){
        $sql = "select dir_id,dir_name,depth,p_id from $this->_dir_table where user_id=$uid and is_del=0 and dir_id>=$from_dir";
        $res = $this->db->query($sql)->result_array();
        if(!isset($res[0])){
            return null;
        }
        $this->load->helper('array');
        //獲取depth區間
        $max_depth = 0;
        foreach($res as $dps => $d){
            if($d['depth']>$max_depth){
                $max_depth = $d['depth'];
            }
        }
        for($i=$max_depth;$i>=0;$i--){ //處理成樹形,子集存在child里,有沒有自己看有沒有child字段
            foreach($res as $key=>$val){
                if($val['depth']==$i){
                    foreach($res as $k=>$v){
                        if($val['p_id']==$v['dir_id']){
                            $v['child'][] = $val;
                            $res[$k] = $v;
                            unset($res[$key]);
                        }
                    }
                }
            }
        }
        $return =  $this->has_child_then_add_ul($res);
        $html="<ul>
            <!-- 第一級 -->
            <li class=''><div class='tree-title'><a href='javascript:void(0)' class='icon icon-add'></a><a href='javascript:void(0)' class='shareItem fold'>全部文件</a></div>";
        $html.=$return."</li></ul>";
        return $html;
    }
    private function has_child_then_add_ul($res,$html='',$collaps_times=1){
        $collaps = 15;//前端寫的是m_l_15, m_l_30 這樣的 , 15為一個單位,跟前端商定就好
        $indent = $collaps_times*$collaps;
        $has_sibling = 0;
        $ul_begin = "<ul class='undis'>";
        $ul_end = "</ul>";
        $li_begin = "<li><div class='tree-title'><a href='javascript:void(0)' class='icon icon-add m_l_%d'></a><a href='javascript:void(0)' class='shareItem fold'>%s</a></div>";//%s處是dir_name
        // $li_begin = "<li>%s";//%s處是dir_name
        $li_end = "</li>";
        $count_li_end = $count_ul_end = 0;
        foreach($res as $key=>$val){
            if(0==$key){
                $html.=$ul_begin;
            }
            $html.=sprintf($li_begin,$indent,$val['dir_name']);
            $count_li_end++;
            if(isset($val['child'])){
                $html = $this->has_child_then_add_ul($val['child'],$html,$collaps_times+1);
            }
            $html.=$li_end;
            if(!isset($res[$key+1])){
                $html.=$ul_end;
            }
        }
        return $html ;
    }


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

锦州市| 南阳市| 沂源县| 确山县| 乐至县| 连山| 靖边县| 临高县| 嘉鱼县| 湖口县| 怀远县| 大化| 灌南县| 搜索| 天气| 五家渠市| 喀喇| 金山区| 定边县| 固安县| 德阳市| 泽普县| 桓台县| 获嘉县| 兴城市| 堆龙德庆县| 昌图县| 浙江省| 阿拉善左旗| 江西省| 台州市| 莒南县| 松原市| 秦皇岛市| 镇原县| 彭山县| 临武县| 黄山市| 宁晋县| 梧州市| 墨江|