How to find the smallest (min) element in one dimensional int array in PHP

3 Answers

0 votes
echo "Smallest element : " . min(array(2, 234, 48, 17, 98, -3, 800, 12237, 100, 28));
              
/*
run:
 
Smallest element : -3 
  
*/

 



answered Feb 3, 2016 by avibootz
0 votes
$smallest = min(array(2, 234, 48, 17, 98, -3, 800, 12237, 100, 28));

echo "Smallest element : " . $smallest;
              
/*
run:
 
Smallest element : -3 
  
*/

 



answered Feb 3, 2016 by avibootz
0 votes
$arr = array(2, 234, 48, 17, 98, -3, 800, 12237, 100, 28);

$smallest = min($arr);

echo "Smallest element : " . $smallest;
              
/*
run:
 
Smallest element : -3 
  
*/

 



answered Feb 3, 2016 by avibootz
...