Source Code:
(back to article)
<?php $numbers = [1, 5, 3, 8, 2]; // Find the lowest value in the array using the min() function $result = min($numbers); // Output the result echo $result; ?>
Result:
Report an issue