例如,给定一个数组$numbers:
```php
$numbers = array(5, 3, 8, 2, 9);
```
要找出数组$numbers中的最小值,可以这样做:
```php
$min_value = https://www.yisu.com/ask/min($numbers);
echo "The minimum value in the array is: " . $min_value;
```
上面的代码会输出:
```
The minimum value in the array is: 2
```