Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,888 questions

51,815 answers

573 users

How to find the maximum value in a multidimensional array with PHP

1 Answer

0 votes
$multiarr = array(
    array(1, 2, 3.14),
    array(1, 1, 16.80),
    array(3, 5, 17.50),
    array(2, 4, 11.03)
);

$maxValue = PHP_FLOAT_MIN; // Initialize with the smallest possible float value

foreach ($multiarr as $subArray) {
    foreach ($subArray as $value) {
        if ($value > $maxValue) {
            $maxValue = $value; // Update maxValue if a larger value is found
        }
    }
}

echo "The maximum value in the array is: " . $maxValue;



/*
run:

The maximum value in the array is: 17.5

*/

 



answered Apr 5, 2025 by avibootz
...