Answers for "write a php program to find a largest of two numbers."

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 program to find a largest of two numbers."

Browse Popular Code Answers by Language