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

Source: Internet
Author: User
For example, there is a multidimensional array:
Copy Code code as follows:

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 quickly to determine the depth of an array.

(Ps:t good PHP Q-buckle 峮: 276167802, Validation: CSL)

In fact, just the answers above should be sorted again. Below the Qingyuan share a simple computational depth function:
Copy Code code as follows:

<?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 ("one"), array (), Array (Array ("5", "6"), "7", "8"), Array (Array ("5", "6"), "7", "8"), "9 "," 10 ");
echo array_depth ($array);
?>

I hope this article for the vast number of PHP developers help, thank you for reading this 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.