gpt4 book ai didi

php - 查找数组 PHP 中最高值的位置

转载 作者:行者123 更新时间:2023-12-03 23:07:08 24 4
gpt4 key购买 nike

所以我想找到这个数组中最大数的位置。

$numbers = array($n1, $n2, $n3, $n4, $n5, $n6, $n7, $n8, $n9, $n10);

我该怎么做?谢谢

最佳答案

max()可以接收数组作为参数,因此:

$numbers = array($n1, $n2, $n3, $n4, $n5, $n6, $n7, $n8, $n9, $n10);
$max = max($numbers);

$max 将具有最高数字。然后,使用 array_search()获得位置:

$pos = array_search($max, $numbers);
echo "Position: ".$pos; // Position: 5

Demo

请注意,该位置将是索引,因此如果您想要“真实”位置,请减去一个。

关于php - 查找数组 PHP 中最高值的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48966268/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com