PHP get largest number from 3 variables [duplicate]

落花浮王杯 提交于 2019-12-13 00:40:59

问题


Possible Duplicate:
Return variable with the highest value?

I'm trying to come up with a simple way of finding the highest number out of 3 variables.

$1 = 100
$2 = 300
$3 = 200

out of those 3 variables, I want to set a new variable as the highest one ($2)

so:

$highest_number = 300

回答1:


$highest_number = max($1, $2, $3);

OR

$values = array($1, $2, $3);
$highest_number = max($values);

Additional information can be found at the quickref for max



来源:https://stackoverflow.com/questions/11876000/php-get-largest-number-from-3-variables

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!