Find Small Value From Unorder Series Number Script

Find Small Value From Unorder Series Number Script is used to find a smallest value from an array list.

Demo :



Type Number :
 
  add one more  

Example :

Just fill the number of array list like this 1 , 3 , -10, -20 , 122 in the above box now will be store an array list then click Find button the result will display like this -20 .

Code :

Following code is Find Small Value From Unorder Series script core if you need to copy and use to your website.


<?php
  $series = array(76, 7348, 56, 2.6, 189, 67.59, 17594, 2648, 1929.79,54, 329, 820, -1.10, -1.101);
  sort($series);
  $min = $series[0];
  echo "Minimum is $min ";
?>

In the above array list have been assigned to $series variable then sort() function have been sorted the array and first array will display here.

Free Download Script :

If you need Find Small Value From Unorder Series Number Script click and download from following link.

Download




Content