PHP max 数学函数
-
定义和用法
max - 找出最大值 -
版本支持
PHP4 PHP5 PHP7 支持 支持 支持 -
语法
max( array $values )
或者:max( mixed $value1 , mixed $value2 [, mixed $... ] )
max() 如果仅有一个参数且为数组,max() 返回该数组中最大的值。如果第一个参数是整数、字符串或浮点数,则至少需要两个参数而 max() 会返回这些值中最大的一个。可以比较无限多个值。PHP 会将非数值的 string 当成 0,但如果这个正是最大的数值则仍然会返回一个字符串。如果多个参数都求值为 0 且是最大值,max() 会返回其中数值的 0,如果参数中没有数值的 0,则返回按字母表顺序最大的字符串。
-
参数
参数 必需的 描述 values 是 包含了多个值的数组。 value1 是 任何可比较的值。 value2 是 任何可比较的值。 ... 否 更多可比较的值。 -
返回值
如果可以考虑多个具有相同大小的值,则将返回第一个列出的值。 当给max()多个数组时,将返回最长的数组。 如果所有数组的长度都相同,则max()将使用字典顺序查找返回值。给定字符串时,比较时将其转换为整数。 -
示例
尝试一下echo max(1, 3, 5, 6, 7); // 7 echo '<br/>'; echo max(array(2, 4, 5)); // 5 echo '<br/>'; // When 'hello' is cast as integer it will be 0. Both the parameters are equally // long, so the order they are given in determines the result echo max(0, 'hello'); // 0 echo '<br/>'; echo max('hello', 0); // hello echo '<br/>'; echo max('42', 3); // '42' echo '<br/>'; // Here 0 > -1, so 'hello' is the return value. echo max(-1, 'hello'); // hello // With multiple arrays of different lengths, max returns the longest $val = max(array(2, 2, 2), array(1, 1, 1, 1)); // array(1, 1, 1, 1) // 对多个数组,max 从左向右比较。 // 因此在本例中:2 == 2,但 4 < 5 $val = max(array(2, 4, 8), array(2, 5, 7)); // array(2, 5, 7) // 如果同时给出数组和非数组作为参数,则总是将数组视为 // 最大值返回 $val = max('string', array(2, 5, 7), 42); // array(2, 5, 7)
-