Answers for "write a php script to create a function to find second largest number in an array. note: the user must enter the array to the function"

PHP
1

program logic for second largest number in an array in php

function secondHighest(array $arr) {
    
    sort($arr);
    
    echo $arr[sizeof($arr)-2];
}
 
 
secondHighest(array( 4, 9, 5, 2, 8, 0, 3, 22));
Posted by: Guest on February-08-2021

Code answers related to "write a php script to create a function to find second largest number in an array. note: the user must enter the array to the function"

Browse Popular Code Answers by Language