本文介绍了返回具有最高值的变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有 3 个变量:$num1、$num2 和 $num3.每个代表一个表格列的行数.

I have 3 variables: $num1, $num2, and $num3. Each represent the number of rows a table column has.

我想找出哪个变量的变量最大,所以我可以在 for 循环中使用它(如下所示)

I want to find which variable has the highest variable, so I can use it in a for loop (shown below)

for ( $row = 1; $row <= $HIGHEST_VARIABLE; $row++) {
     ...
}

这可能已经有人回答了,但我无法根据我的搜索找到它

This probably was already answered, but I can't find it based on my searches

推荐答案

$highest = max($num1, $num2, $num3);

这篇关于返回具有最高值的变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 13:48