Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6807469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T19:50:10+00:00 2026-05-26T19:50:10+00:00

Here is the multi dimensional array $arr = array( array(141,151,161), 2, 3, array( 101,

  • 0

Here is the multi dimensional array

$arr = array(
    array(141,151,161), 
    2, 
    3, 
    array(
        101, 
        202, 
        array(303,404)
    )
);

How to find the highest value, which the result in the array above should be 404.
The array depth can may be more than 3.


Here is the code i last tried, but i notice this only can check until 3 depth, i need it can be check unlimited depth

function MaxArray($arr){
    foreach($arr as $valueDepth1){
        if(is_array($valueDepth1)){
            foreach($valueDepth1 as $valueDepth2){
                if(is_array($valueDepth2)){
                    foreach($valueDepth2 as $valueDepth3){
                        $checingArray[]=$valueDepth3;
                    }
                }else{
                    $checingArray[]=$valueDepth2;
                }               
            }
        }else{
            $checingArray[]=$valueDepth1;
        }
    }

    return max($checingArray);
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T19:50:11+00:00Added an answer on May 26, 2026 at 7:50 pm
    function highest($array) {
       foreach($array as $key => $value) {
           if (is_array($value)) {
               $array[$key] = highest($value);
           }
       }
    
       sort($array);
    
       return array_pop($array);
    }
    

    You can see it in action here: http://codepad.org/4xPFsU1U

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very specific problem here. I have a multi-dimensional array that I
I am struggling with this. Sorting a multi-dimensional array by value based on dates.
I am trying to expand on my question asked here: Creating a multi-dimensional array
I am trying to parse the table shown here into a multi-dimensional php array.
I'm generating a multi-dimensional array in javascript that looks like this (this is the
I want to replace word groups by links. I use a multi-dimensional array to
In a multi-dimensional array where the second dimension will be of known sizes (albeit
I need to create a multi-dimensional array which will be passed to a class.
Here is a fun issue I am wrestling with. I have a Multi Dimensional
I have a JSON file that I would like to create an multi-dimensional array

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.