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

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何按值對PHP中的數(shù)組進(jìn)行排序?

如何按值對PHP中的數(shù)組進(jìn)行排序?

PHP
慕村9548890 2023-05-26 09:24:18
如果有人可以幫助我,我將非常感激。我的代碼:$product_var_tpl = array(? ? ? ? ? ? ? ? ? ? ? ? 'name' => $product['name'].(isset($product['attributes']) ? ' - '.$product['attributes'] : ''),? ? ? ? ? ? ? ? ? ? ? ? 'unit_price' => Tools::displayPrice($product_price, $this->context->currency, false),? ? ? ? ? ? ? ? ? ? ? ? 'price' => Tools::displayPrice($product_price * $product['quantity'], $this->context->currency, false),? ? ? ? ? ? ? ? ? ? ? ? 'quantity' => $product['quantity'],? ? ? ? ? ? ? ? ? ? ? ? 'reference' => $seller_name,? ? ? ? ? ? ? ? ? ? ? ? 'customization' => array()? ? ? ? ? ? ? ? ? ? );我想按字母順序按“參考”對這個(gè)數(shù)組進(jìn)行排序。我試過這個(gè):usort($product_var_tpl, function($a, $b) {? ? return $a['reference'] - $b['reference'];});但結(jié)果為 null 或空。默認(rèn)情況下輸出是:Referance? ? ?|? ?Product name | Unite price |? Qty? |? Pricetestshop2? ? ?|? ?pere? ? ? ? ?| 42,00? ? ? ?|? 0.5? | 21,00?testshoptwo? ?|? ?portocale? ? | 21,00? ? ? ?|? 1? ? | 21,00? ? ?irinatestshop |? ?qiwi? ? ? ? ?| 34,00? ? ? ?|? 0.5? | 17,00?irinatestshop |? ?Banane? ? ? ?| 12,00? ? ? ?| 1? ? ?| 12,00?如果我使用“usort”,我只會(huì)得到 4 個(gè)空行
查看完整描述

1 回答

?
蝴蝶刀刀

TA貢獻(xiàn)1801條經(jīng)驗(yàn) 獲得超8個(gè)贊

請排序$product_var_tpl_list,不是$product_var_tpl。


以下是示例代碼。


$array = array(       // $product_var_tpl_list

        array(        // $product_var_tpl 1

            'name' => 'b',

            'reference' => 'bbb'

            ),

        array(        // $product_var_tpl 2

            'name' => 'a',

            'reference' => 'aaa'

            ),

        array(        // $product_var_tpl 3

            'name' => 'd',

            'reference' => 'ddd'

            ),

        array(        // $product_var_tpl 4

            'name' => 'c',

            'reference' => 'ccc'

            ),

        array(        // $product_var_tpl 5

            'name' => 'e',

            'reference' => 'eee'

            ),

        array(        // $product_var_tpl 6

            'name' => 'a',

            'reference' => 'www'

            )

    );


usort($array, function($a, $b) {

    return strcmp($a['reference'], $b['reference']);

});


print_r($array);

測試結(jié)果如下。


Array

(

    [0] => Array

        (

            [name] => a

            [reference] => aaa

        )


    [1] => Array

        (

            [name] => b

            [reference] => bbb

        )


    [2] => Array

        (

            [name] => c

            [reference] => ccc

        )


    [3] => Array

        (

            [name] => d

            [reference] => ddd

        )


    [4] => Array

        (

            [name] => e

            [reference] => eee

        )


    [5] => Array

        (

            [name] => a

            [reference] => www

        )


)


查看完整回答
反對 回復(fù) 2023-05-26
  • 1 回答
  • 0 關(guān)注
  • 138 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)