How can we quickly determine the depth of the php multi-dimensional array? _ PHP Tutorial

Source: Internet
Author: User
How can we quickly determine the depth of the php multi-dimensional array ?. For example, there is a multi-dimensional array: array (1, 3, 4), array (1, 2, 3), array (1, 2 ), array (1) the depth of this array is 5, so how to quickly determine a number, for example, there is a multi-dimensional array:


array(        array(            array(1,3,4),            array(                array(                    1,2,3                )            )        ),        array(            array(1,2),            array(1)        )    )


The depth of this array is 5, so how to quickly determine the depth of an array.


(PS: T goodPHPQ: 276167802, verification: csl)


In fact, only the above answers should be sorted again. Below QingyuanShare a simple deep computing function:


  $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);?>

I hope this article will be helpful to the majority of php developers. thank you for reading this article.

Arrays array (1, 3, 4), array (1, 2, 3), array (1, 2), array (1 ))) the depth of this array is 5, so how to quickly determine a number...

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.