php多維陣列的深度的方法

來源:互聯網
上載者:User
如何快速的確定一個數組深度,下面有個不錯的方法可以迅速確定php多維陣列的深度,感興趣的朋友可以參考下例如有一個多維陣列: 代碼如下:array( array( array(1,3,4), array( array( 1,2,3 ) ) ), array( array(1,2), array(1) ) )  這個數組的深度就是5,那麼如何快速的確定一個數組深度。  (PS:T不錯的PHP Q扣峮:276167802,驗證:csl)  其實,只是上面的答案應該再進行排序就可以了。下面清源分享一個簡單的計算深度函數:  代碼如下:<?php function array_depth($array) { $max_depth = 1;   foreach ($array as $value) { if (is_array($value)) { $depth = array_depth($value) + 1;   if ($depth > $max_depth) { $max_depth = $depth; } } } return $max_depth; }  $array = array( array("11"), array(),array( array(array("5", "6"), "7", "8")),array( array(array("5", "6"), "7", "8")), "9", "10"); echo array_depth($array); ?>  希望本文對廣大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.