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,880 questions

51,806 answers

573 users

How to find the min and max of an int array in PHP

2 Answers

0 votes
$array = [3, 14, 4, 1, 5, 90, 2, 6, 89, 3, 7];

$minValue = array_reduce($array, function($carry, $item) {
    return $item < $carry ? $item : $carry;
}, $array[0]);

$maxValue = array_reduce($array, function($carry, $item) {
    return $item > $carry ? $item : $carry;
}, $array[0]);

echo "Minimum value: " . $minValue . "\n";
echo "Maximum value: " . $maxValue . "\n";



/*
run:

Minimum value: 1
Maximum value: 90

*/

 



answered Jan 16, 2025 by avibootz
0 votes
$array = [3, 14, 4, 1, 5, 90, 2, 6, 89, 3, 7];

$minValue = $array[0];
$maxValue = $array[0];

foreach ($array as $value) {
    if ($value < $minValue) {
        $minValue = $value;
    }
    if ($value > $maxValue) {
        $maxValue = $value;
    }
}

echo "Minimum value: " . $minValue . "\n";
echo "Maximum value: " . $maxValue . "\n";



/*
run:

Minimum value: 1
Maximum value: 90

*/

 



answered Jan 16, 2025 by avibootz

Related questions

1 answer 96 views
1 answer 94 views
3 answers 133 views
1 answer 75 views
1 answer 84 views
1 answer 74 views
1 answer 70 views
...