How to determine the dimensions of a PHP array _php tutorial

Source: Internet
Author: User
As shown below:
Copy CodeThe code is as follows:
/**
* Returns the dimension of the array
* @param [Type] $arr [description]
* @return [Type] [description]
*/
function Arraylevel ($arr) {
$al = Array (0);
function AL ($arr,& $al, $level =0) {
if (Is_array ($arr)) {
$level + +;
$al [] = $level;
foreach ($arr as $v) {
AL ($v, $al, $level);
}
}
}
AL ($arr, $al);
Return Max ($al);
}

$arr = Array (
' 0 ' = ' 0 ',
);

echo Arraylevel ($arr);
?>

http://www.bkjia.com/PHPjc/327589.html www.bkjia.com true http://www.bkjia.com/PHPjc/327589.html techarticle As follows: copy the Code as follows:? PHP/** * Returns the dimension of the array * @param [type] $arr [description] * @return [type] [description] */function Arra Ylevel ($arr) {$al = arr ...

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