PHP無限極分類的實現(不使用遞迴),php遞迴_PHP教程

來源:互聯網
上載者:User

PHP無限極分類的實現(不使用遞迴),php遞迴


無限極分類在開發中經常使用,例如:部門結構、文章分類。無限極分類的痛點在於“輸出”和“查詢”,例如

  • 將文章分類輸出為
      列表形式;
    • 尋找分類A下面所有分類包含的文章。

    1.實現原理

    在《無限級分類實現思路》一文中介紹了幾種常見的實現方法,各有利弊。其中“改進前序走訪樹”資料結構,便於輸出和查詢,但是在移動分類和常規理解上有些複雜。

    2.資料結構

    id fid title
    1 0 中國
    2 1 江蘇
    3 1 安徽
    4 8 江陰
    5 3 蕪湖
    6 3 合肥
    7 3 蚌埠
    8 2 無錫
    1, 'fid'=>0, 'title' => '中國'),         array('id'=>2, 'fid'=>1, 'title' => '江蘇'),        array('id'=>3, 'fid'=>1, 'title' => '安徽'),        array('id'=>4, 'fid'=>8, 'title' => '江陰'),        array('id'=>5, 'fid'=>3, 'title' => '蕪湖'),        array('id'=>6, 'fid'=>3, 'title' => '合肥'),        array('id'=>7, 'fid'=>3, 'title' => '蚌埠'),        array('id'=>8, 'fid'=>8, 'title' => '無錫')    );?>

    各分類之間通過父類id(即fid)進行層級“串聯”,形成一棵分類樹。在進行串聯時候有一點值得注意:分類A的fid不可以是其子類的id。

    在使用這種資料結構進行輸出時最常用的演算法就是“遞迴”,熟悉PHP語言的朋友肯定知道,PHP不擅長遞迴 ,而且遞迴次數有限(100次左右,因作業系統和配置而異)。

    由於所有的遞迴均可以使用迴圈實現,本文根據PHP語言特點編寫了一套關於“無限級”分類的函數,相比遞迴實現而言效率更高

    3.輸出ul列表形式

    將上述資料輸出為下面的HTML

    
        
    • 江蘇
      • 無錫
        • 江陰
    • 安徽
      • 蕪湖
      • 合肥
      • 蚌埠

    這種HTML結構在前端使用(使用JavaScript和CSS構造可摺疊樹)十分方便。具體實現程式如下:

    
        

      4.輸出option列表形式

      江蘇    無錫        江陰安徽    蕪湖    合肥    蚌埠

      具體實現程式如下:

      ' . str_repeat(" ", $op['depth'] * 4) . $op['title'] . '<;/option>';    }?><;/select>5. 尋找某一分類的所有子類6. 尋找某一分類的所有父類7. 相關函數=0 ; $i--) {                $node = $data[$i];                if($node['fid'] == $fid) {                    array_splice($data, $i , 1);                    $result[] = $node['id'];                    $cids[] = $node['id'];                    $flag = true;                }            }        }        $fids = $cids;    } while($flag === true);    return $result;}function get_tree_parent($data, $id) {    $result = array();    $obj = array();    foreach($data as $node) {        $obj[$node['id']] = $node;    }        $value = isset($obj[$id]) ? $obj[$id] : null;        while($value) {        $id = null;        foreach($data as $node) {            if($node['id'] == $value['fid']) {                $id = $node['id'];                $result[] = $node['id'];                break;            }        }        if($id === null) {            $result[] = $value['fid'];        }        $value = isset($obj[$id]) ? $obj[$id] : null;    }    unset($obj);    return $result;}function get_tree_ul($data, $fid) {    $stack = array($fid);    $child = array();    $added_left = array();    $added_right= array();    $html_left     = array();    $html_right    = array();    $obj = array();    $loop = 0;    foreach($data as $node) {        $pid = $node['fid'];        if(!isset($child[$pid])) {            $child[$pid] = array();        }        array_push($child[$pid], $node['id']);        $obj[$node['id']] = $node;    }    while (count($stack) > 0) {            $id = $stack[0];        $flag = false;        $node = isset($obj[$id]) ? $obj[$id] : null;        if (isset($child[$id])) {            $cids = $child[$id];            $length = count($cids);            for($i = $length - 1; $i >= 0; $i--) {                array_unshift($stack, $cids[$i]);            }            $obj[$cids[$length - 1]]['isLastChild'] = true;            $obj[$cids[0]]['isFirstChild'] = true;            $flag = true;        }        if ($id != $fid && $node && !isset($added_left[$id])) {            if(isset($node['isFirstChild']) && isset($node['isLastChild']))  {                $html_left[] = '';            } else if(isset($node['isFirstChild'])) {                $html_left[] = '';            } else if(isset($node['isLastChild'])) {                $html_left[] = '';            } else {                $html_left[] = '';            }                        $html_left[] = ($flag === true) ? "{$node['title']}" : "{$node['title']}";            $added_left[$id] = true;        }            if ($id != $fid && $node && !isset($added_right[$id])) {            $html_right[] = ($flag === true) ? '' : '';            $added_right[$id] = true;        }        if ($flag == false) {            if($node) {                $cids = $child[$node['fid']];                for ($i = count($cids) - 1; $i >= 0; $i--) {                    if ($cids[$i] == $id) {                        array_splice($child[$node['fid']], $i, 1);                        break;                    }                }                 if(count($child[$node['fid']]) == 0) {                    $child[$node['fid']] = null;                }            }            array_push($html_left, array_pop($html_right));            array_shift($stack);        }        $loop++;        if($loop > 5000) return $html_left;    }    unset($child);    unset($obj);    return implode('', $html_left);}function get_tree_option($data, $fid) {    $stack = array($fid);    $child = array();    $added = array();    $options = array();    $obj = array();    $loop = 0;    $depth = -1;    foreach($data as $node) {        $pid = $node['fid'];        if(!isset($child[$pid])) {            $child[$pid] = array();        }        array_push($child[$pid], $node['id']);        $obj[$node['id']] = $node;    }    while (count($stack) > 0) {            $id = $stack[0];        $flag = false;        $node = isset($obj[$id]) ? $obj[$id] : null;        if (isset($child[$id])) {            for($i = count($child[$id]) - 1; $i >= 0; $i--) {                array_unshift($stack, $child[$id][$i]);            }            $flag = true;        }        if ($id != $fid && $node && !isset($added[$id])) {            $node['depth'] = $depth;            $options[] = $node;            $added[$id] = true;        }        if($flag == true){            $depth++;        } else {            if($node) {                for ($i = count($child[$node['fid']]) - 1; $i >= 0; $i--) {                    if ($child[$node['fid']][$i] == $id) {                        array_splice($child[$node['fid']], $i, 1);                        break;                    }                }                 if(count($child[$node['fid']]) == 0) {                    $child[$node['fid']] = null;                    $depth--;                }            }            array_shift($stack);        }        $loop++;        if($loop > 5000) return $options;    }    unset($child);    unset($obj);    return $options;}?>php遞迴問題(無限極分類)foreach本身就相當於判斷了啊,當$arr數組非空時foreach會遍曆並遞迴訪問子節點,但是對於葉子結點,$arr數組是空的,根本不會被foreach,此時直接return了。明白?  php 遞迴問題,想要將資料按照無限極分類的樣式顯示出來首先 將json 解碼成數組, 用json_decode 函數 注意 一定要加上第二個參數 否則他會返回一個對象。接下來就是地遞迴了。這是一個最簡單的遞迴只要逐個遍曆即可。下面是完整的代碼:$data= json_decode($str,true);$options = getChildren($data);function getChildren($parent,$deep=0) {foreach($parent as $row) {$data[] = array("id"=>$row['id'], "name"=>$row['name'],"pid"=>$row['parentid'],'deep'=>$deep);if ($row['childs']) {$data = array_merge($data, getChildren($row['childs'], $deep+1));}}return $data;}?></option></select>
      以上代碼已測試通過 如下



       

      http://www.bkjia.com/PHPjc/831802.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/831802.htmlTechArticlePHP無限極分類的實現(不使用遞迴),php遞迴 無限極分類在開發中經常使用,例如:部門結構、文章分類。無限極分類的痛點在於輸出和查...

    相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.