第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何根據(jù) PHP 中的最高數(shù)量從多個數(shù)組中找到數(shù)組?

如何根據(jù) PHP 中的最高數(shù)量從多個數(shù)組中找到數(shù)組?

PHP
翻翻過去那場雪 2022-10-28 15:21:42
我在多個數(shù)組中遇到一些問題來查找高度量數(shù)組。我想在 PHP 中將具有大量數(shù)組的數(shù)組從多個數(shù)組轉(zhuǎn)換為一個新數(shù)組。如果兩個或多個數(shù)組的最高數(shù)量相同,則將任何數(shù)組作為新數(shù)組。目前,我有兩個具有相同數(shù)量但不是最高值的數(shù)組,因此它不會在示例數(shù)據(jù)中選擇。輸出數(shù)組應與最高數(shù)量及其代碼和類型相結(jié)合。輸入:(    [0] => Array        (            [code] => Custom discount            [amount] => 3514.55            [type] => fixed_amount        )    [1] => Array        (            [code] => MerOrder300            [amount] => 400.00            [type] => fixed_amount        )    [2] => Array        (            [code] => MerOrder400            [amount] => 400.00            [type] => fixed_amount        )    [3] => Array        (            [code] => MerOrder450            [amount] => 450.00            [type] => fixed_amount        ))輸出:(     [0] => Array        (            [code] => Custom discount            [amount] => 3514.55            [type] => fixed_amount        ))
查看完整描述

3 回答

?
阿波羅的戰(zhàn)車

TA貢獻1862條經(jīng)驗 獲得超6個贊

您可以array_column使用array_keysmax

$amountArr = array_column($arr, null, 'amount');
print_r($amountArr[max(array_keys($amountArr))]);

工作示例:- https://3v4l.org/d2WRf


查看完整回答
反對 回復 2022-10-28
?
浮云間

TA貢獻1829條經(jīng)驗 獲得超4個贊

Rakesh 的解決方案通過在調(diào)用期間使用amount作為新鍵消除了多個限定子數(shù)組的可能性。array_column()

至少有幾種不同的方法可以執(zhí)行此任務。這只是一個 - 提取最大值,然后使用該值過濾整個數(shù)組。

代碼:(演示

$array = [

    [

        'code' => 'Custom discount',

        'amount' => 3514.55,

        'type' => 'fixed_amount'

    ],

    [

        'code' => 'MerOrder300',

        'amount' => 400.00,

        'type' => 'fixed_amount'

    ],

    [

        'code' => 'MerOrder400',

        'amount' => 3514.55,

        'type' => 'fixed_amount'

    ],

    [

        'code' => 'MerOrder450',

        'amount' => 450.00,

        'type' => 'fixed_amount'

    ]

];


$max = max(

    array_column($array, 'amount')

);

var_export(

    array_filter(

        $array,

        function($subarray) use ($max) {

            return $subarray['amount'] == $max;

        }

    )

);


查看完整回答
反對 回復 2022-10-28
?
人到中年有點甜

TA貢獻1895條經(jīng)驗 獲得超7個贊

您可以使用foreach:


$arr = [

    [

        'code' => 'Custom discount', 

        'amount' => 3514.55,

        'type' => 'fixed_amount'

    ],

    [

        'code' => 'MerOrder300', 

        'amount' => 400.00,

        'type' => 'fixed_amount'

    ],    

    [

        'code' => 'MerOrder400', 

        'amount' => 400.00,

        'type' => 'fixed_amount'

    ],

    [

        'code' => 'MerOrder450', 

        'amount' => 450.00,

        'type' => 'fixed_amount'

    ]

];


$max = $arr[0];


foreach ($arr as $line) {

    if ($line['amount'] > $max['amount']) {

        $max = $line;

    }

}


print_r($max);


查看完整回答
反對 回復 2022-10-28
  • 3 回答
  • 0 關注
  • 144 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號