Home > php教程 > php手册 > body text

php max() min() 返回最大值和最小值

WBOY
Release: 2016-06-02 09:14:10
Original
1605 people have browsed it

max() 返回最大值

语法:max(x,y)

参数 描述 

x 必需,一个数.

y 必需,一个数.

说明:max() 返回参数中数值最大的值.

如果仅有一个参数且为数组,max() 返回该数组中最大的值,如果第一个参数是整数、字符串或浮点数,则至少需要两个参数而 max() 会返回这些值中最大的一个,可以比较无限多个值,实例代码如下:

echo max(1,3,5,6,7);          //返回7 
echo "<br>"; 
echo max(array(2,4,5));         //返回5 
echo "<br>"; 
echo max(0,&#39;hello&#39;);          //返回0 
echo "<br>"; 
echo max(&#39;hello&#39;,0);          //返回hello 
echo "<br>"; 
echo max(-1,&#39;hello&#39;);          //返回hello 
echo "<br>"; 
$val=max(array(2,4,8),array(2,5,7));       //返回第二个数组 
print_r($val); 
echo "<br>"; 
$val=max(&#39;string&#39;,array(2,5,7),42);       //返回数组
Copy after login

min() 返回最小值.

语法:min(x,y)

参数 描述

x 必需,一个数.

y 必需,一个数.

说明:min() 返回参数中数值最小的.

如果仅有一个参数且为数组,min() 返回该数组中最小的值,如果第一个参数是整数、字符串或浮点数,则至少需要两个参数而 min() 会返回这些值中最小的一个,可以比较无限多个值,实例代码如下:

echo min(2,3,1,6,7);        //1 
echo "<br>"; 
echo min(array(2,4,5));       //2 
echo "<br>"; 
echo min(0,&#39;hello&#39;);        //0 
echo "<br>"; 
echo min(&#39;hello&#39;,0);        //hello 
echo "<br>"; 
echo min(&#39;hello&#39;,-1);        //-1 
echo "<br>"; 
$val=min(array(2,4,8),array(2,5,1));     //返回第一个数组 
print_r($val);
echo "<br>"; 
$val=min(&#39;string&#39;,array(2,5,7),42);     //返回string 
print_r($val);
Copy after login

               
               

教程地址:

欢迎转载!但请带上文章地址^^

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!