php 找到最低和最高价值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 找到最低和最高价值相关的知识,希望对你有一定的参考价值。

<span style="color: #808080; font-style: italic;">/* find the highest value */</span>
&nbsp;
<a href="http://www.php.net/print"><span style="color: #000066;">print</span></a> <a href="http://www.php.net/max"><span style="color: #000066;">max</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span>, <span style="color: #cc66cc;">70</span>, <span style="color: #cc66cc;">101</span>, <span style="color: #cc66cc;">50</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">// returns --&gt; 101</span>
&nbsp;
<span style="color: #0000ff;">$array</span> = <a href="http://www.php.net/array"><span style="color: #000066;">array</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span>, <span style="color: #cc66cc;">701</span>, <span style="color: #cc66cc;">2</span>, <span style="color: #cc66cc;">4</span>, <span style="color: #cc66cc;">202</span><span style="color: #66cc66;">&#41;</span>;
<a href="http://www.php.net/print"><span style="color: #000066;">print</span></a> <a href="http://www.php.net/max"><span style="color: #000066;">max</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$array</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">// returns --&gt; 701</span>
&nbsp;
&nbsp;
&nbsp;
<span style="color: #808080; font-style: italic;">/* find the lowest value */</span>
&nbsp;
<a href="http://www.php.net/print"><span style="color: #000066;">print</span></a> <a href="http://www.php.net/min"><span style="color: #000066;">min</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span>, <span style="color: #cc66cc;">70</span>, <span style="color: #cc66cc;">101</span>, <span style="color: #cc66cc;">50</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">// returns --&gt; 50</span>
&nbsp;
<span style="color: #0000ff;">$array</span> = <a href="http://www.php.net/array"><span style="color: #000066;">array</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span>, <span style="color: #cc66cc;">701</span>, <span style="color: #cc66cc;">2</span>, <span style="color: #cc66cc;">4</span>, <span style="color: #cc66cc;">202</span><span style="color: #66cc66;">&#41;</span>;
<a href="http://www.php.net/print"><span style="color: #000066;">print</span></a> <a href="http://www.php.net/min"><span style="color: #000066;">min</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$array</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">// returns --&gt; 2</span>

以上是关于php 找到最低和最高价值的主要内容,如果未能解决你的问题,请参考以下文章

如何找到最高和最低的产品价格

选择过去 24 小时和过去 ​​30 天的最低和最高温度 [关闭]

我如何找到这个学生数组中所有学生的最高、最低和总平均数

如何找到最高(最新)和最低(最早)日期 [R]

如何在我的循环中找到所有测试分数的最高、最低和平均值?

如何在数组java中找到最大值和最小值?