Answers for "php array max value"

PHP
0

php max value in associative array

<?php
$myarrayassoc = array("Cycles" => 3, "Bikes" => 6, "Cars" => 11);
$value = max($myarrayassoc);
$key = array_search($value, $myarrayassoc);
echo "The max value is: ".$value.", its key is: ".$key;
?>
Posted by: Guest on November-18-2021
-2

find largest element of an array in php

<?php 
$array = array(5,7,81,0,12);

$max1 =0 ;
$max2 = 0;

for($i=0; $i $max1)
    {
      $max2 = $max1;
      $max1 = $array[$i];
    }
    else if($array[$i] > $max2)
    {
      $max2 = $array[$i];
    }
}
echo "Maximum value = ".$max1;
echo "
"; 
echo "Second maximum Value =".$max2;
?>
Posted by: Guest on July-29-2020

Browse Popular Code Answers by Language