php biggest int
PHP_INT_MAX
php biggest int
PHP_INT_MAX
php max
echo max(2, 3, 1, 6, 7); // 7
echo max(array(2, 4, 5)); // 5
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;
?>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us