php簡單實現無限分類樹形列表的方法_php技巧

來源:互聯網
上載者:User

本文執行個體講述了php簡單實現無限分類樹形列表的方法。分享給大家供大家參考。具體如下:

$items = array(   1 => array('id' => 1, 'pid' => 0, 'name' => '江西省'),   2 => array('id' => 2, 'pid' => 0, 'name' => '黑龍江省'),  3 => array('id' => 3, 'pid' => 1, 'name' => '南昌市'),   4 => array('id' => 4, 'pid' => 2, 'name' => '哈爾濱市'),  5 => array('id' => 5, 'pid' => 2, 'name' => '雞西市'),   6 => array('id' => 6, 'pid' => 4, 'name' => '香坊區'),   7 => array('id' => 7, 'pid' => 4, 'name' => '南崗區'),   8 => array('id' => 8, 'pid' => 6, 'name' => '和興路'),   9 => array('id' => 9, 'pid' => 7, 'name' => '西大直街'),   10 => array('id' => 10, 'pid' => 8, 'name' => '東北林業大學'),  11 => array('id' => 11, 'pid' => 9, 'name' => '哈爾濱工業大學'),  12 => array('id' => 12, 'pid' => 8, 'name' => '哈爾濱師範大學'),  13 => array('id' => 13, 'pid' => 1, 'name' => '贛州市'),   14 => array('id' => 14, 'pid' => 13, 'name' => '贛縣'),   15 => array('id' => 15, 'pid' => 13, 'name' => '于都縣'),   16 => array('id' => 16, 'pid' => 14, 'name' => '茅店鎮'),   17 => array('id' => 17, 'pid' => 14, 'name' => '大田鄉'),   18 => array('id' => 18, 'pid' => 16, 'name' => '義源村'),   19 => array('id' => 19, 'pid' => 16, 'name' => '上壩村'),   20 => array('id' => 20, 'pid' => 0, 'name' => '廣東省'),   21 => array('id' => 21, 'pid' => 20, 'name' => '廣州市'),); $t = array(); foreach ($items as $id => $item) {   if ($item['pid']) {     $items[$item['pid']][$item['id']] = &$items[$item['id']];    $t[] = $id;   } } foreach($t as $u) {   unset($items[$u]); } echo "<pre>"; print_r($items);

希望本文所述對大家的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.