要找出数组中的最小值,可以使用PHP中的min()函数。该函数会返回数组中的最小值。
例如,给定一个数组$numbers:
```php
$numbers = array(5, 3, 8, 2, 9);
```
要找出数组$numbers中的最小值,可以这样做:
```php
$min_value = min($numbers);
echo "The minimum value in the array is: " . $min_value;
```
上面的代码会输出:
```
The minimum value in the array is: 2
```