A quick way to determine the depth of a multidimensional array of PHP _php tutorial

Source: Internet
Author: User
For example, there is a multidimensional array:
Copy CodeThe code is as follows:
Array
Array
Array (1,3,4),
Array
Array
The
)
)
),
Array
Array (),
Array (1)
)
)

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

(Ps:t good PHP q buckle 峮: 276167802, verify: CSL)

In fact, just the above answer should be sorted again. The following Qingyuan share a simple computational depth function:
Copy CodeThe code is as follows:
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 ("one"), array (), Array (Array ("5", "6"), "7", "8"), Array (Array ("5", "6"), "7", "8")), "9 "," 10 ");
echo array_depth ($array);
?>

I hope this article to the vast number of PHP developers to help, thank you for reading this article.

http://www.bkjia.com/PHPjc/676892.html www.bkjia.com true http://www.bkjia.com/PHPjc/676892.html techarticle For example, there is a multidimensional array: The copy code code is as follows: Array (array (array (1,3,4), array (array)), Array (array (1)), and the depth of this array is 5, then as ...

  • 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.