繁体   English   中英

如何从数组中排序并获取最小值和最大值?

[英]How to sort and get the min & max Value from an Array?

我有2个数组

//each array contains 8 values
$ids = Array(1441, 1313, 1123, 1316, 1313, 1313, 1123, 1567);
//each id has a value in $data array
$data = Array(2, 3, 8, 4, 5, 4, 2, 9);


//here is my problem: 

$max_data = array_product($data); //but not all values from $data only these:
$ids = [1441,1123,1316,1313,1567]; //these are the ids with highest data.
echo $max_data; //result must be 2880 (2 * 8 * 4 * 5 * 9)
$min_data = array_product($data); //and now
$ids = [1441,1313,1316,1123,1567]; //these are the ids with lowest data.
echo $max_data; //result must be 432 (2 * 3 * 4 * 2 * 9)

希望我能解释我的问题。

谢谢。


解决了。

我做了一个获取最大值和最小值的函数。 我想得到更好的答案,谢谢!

<?php

$ids = Array(1441, 1313, 1123, 1316, 1313, 1313, 1123, 1567);           
$data = Array(2, 3, 8, 4, 5, 4, 2, 9);

function getMaxData($ids, $data)
{
    (int)$_total = 1;
    array_multisort($ids, $data, SORT_DESC);

    foreach(array_unique($ids) as $key => $value)
        $_total *= $data[$key];

    return $_total;
}

function getMinData($ids, $data)
{
    (int)$_total = 1;
    array_multisort($ids, $data, SORT_ASC);

    foreach(array_unique($ids) as $key => $value)
        $_total *= $data[$key];

    return $_total;
}

echo "Max: ".getMaxData($ids, $data)."<br />";
echo "Min: ".getMinData($ids, $data)."<br />";

?>

我不确定我是否理解正确,但是您不需要关联数组吗?

$foo = Array(2 => 1441, 3 => 1313 .... )

http://php.net/manual/zh/language.types.array.php

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM