The Minimum Array Element in PHP
To get the minimum value of an array
in PHP, the min function is used.
See the example:
<?php
echo min([2, 1, 3]);
?>
Code execution result:
1
To get the minimum value of an array
in PHP, the min function is used.
See the example:
<?php
echo min([2, 1, 3]);
?>
Code execution result:
1