Problem:
You want to find out the minimum value from an array.
Solution:
min() function can help you to the minimum value of an Array. See the following example-
<?php $numbers = array(77, 455, 1000); echo min($numbers); ?>
[wpdm_file id=106]
Output:
77