PHP max() 函数
PHP max() 函数
实例
通过 max() 函数查找最大值:
<?php
echo(max(2,4,6,8,10) . "<br>");
echo(max(22,14,68,18,15) . "<br>");
echo(max(array(4,6,8,10)) . "<br>");
echo(max(array(44,16,81,12)));
?>
echo(max(2,4,6,8,10) . "<br>");
echo(max(22,14,68,18,15) . "<br>");
echo(max(array(4,6,8,10)) . "<br>");
echo(max(array(44,16,81,12)));
?>
运行实例 »
定义和用法
max() 函数返回一个数组中的最大值,或者几个指定值中的最大值。
语法
max(array_values);
or
max(value1,value2,...);
or
max(value1,value2,...);
参数 | 描述 |
---|---|
array_values | 必需。规定一个包含值的数组。 |
value1,value2,... | 必需。规定要比较的值(至少两个值)。 |
技术细节
返回值: | 数值最大值。 |
---|---|
返回类型: | Mixed |
PHP 版本: | 4+ |
PHP Math 参考手册
相关文章
- PHP 变量
- PHP If Else 语句
- PHP While 循环
- PHP 面向对象
- PHP date() 函数
- PHP 文件处理
- PHP Cookie
- PHP Secure E-mails
- PHP 错误处理
- PHP JSON
- PHP array_count_values() 函数
- PHP array_intersect_assoc() 函数
- PHP array_intersect_ukey() 函数
- PHP array_uintersect_assoc() 函数
- PHP count() 函数
- PHP in_array() 函数
- PHP list() 函数
- PHP natcasesort() 函数
- PHP pos() 函数
- PHP 5 Math 函数