簡體   English   中英

刪除關聯數組中的空值鍵-值對失真順序

[英]removing null value key-val pair distors order in associative array

我有這個數組

[1] => Array
    (
        [Assembly required] => Yes
        [Max load (kg)] => 120
        [Product weight (kg)] => 
        [Warranty (years)] => 3
        [Height adjustable] => Yes
        [Lumbar support] => 
        [Back tilt adjustment] => Yes
        [Seat tilt adjustment] => Yes
        [Chair height range (mm)] => 880 - 950
        [Chair seat width (mm)] => 500
        [Chair seat depth (mm)] => 480
        [Chair back height (mm)] => 410
        [Chair back width (mm)] => 420
        [Seat height range (mm)] => 440 - 580
        [AFRDI Approved] => 
        [Optional adjustable arms] => Yes
        [image] => https://cdn.shopify.com/s/files/1/1249/7859/files/Chair.png?18135080827462508830
    )

上面數組的var_dump是

         [1]=>
      array(17) {
        ["Assembly required"]=>
        string(3) "Yes"
        ["Max load (kg)"]=>
        string(3) "120"
        ["Product weight (kg)"]=>
        string(0) ""
        ["Warranty (years)"]=>
        string(1) "3"
        ["Height adjustable"]=>
        string(3) "Yes"
        ["Lumbar support"]=>
        string(0) ""
        ["Back tilt adjustment"]=>
        string(3) "Yes"
        ["Seat tilt adjustment"]=>
        string(3) "Yes"
        ["Chair height range (mm)"]=>
        string(9) "880 - 950"
        ["Chair seat width (mm)"]=>
        string(3) "500"
        ["Chair seat depth (mm)"]=>
        string(3) "480"
        ["Chair back height (mm)"]=>
        string(3) "410"
        ["Chair back width (mm)"]=>
        string(3) "420"
        ["Seat height range (mm)"]=>
        string(9) "440 - 580"
        ["AFRDI Approved"]=>
        string(0) ""
        ["Optional adjustable arms"]=>
        string(3) "Yes"
        ["image"]=>
        string(80) "https://cdn.shopify.com/s/files/1/1249/7859/files/Chair.png?18135080827462508830"
      }

我想從上面刪除空白值對。

  foreach($singlearr as $key=>$value){      
         if(is_null($value) || $value == '')
             unset($singlearr[$key]);
    }

這刪除了鍵值為空的鍵值對, 但是按以下順序扭曲了序列

    [1] => Array
    (
        [Assembly required] => Yes
        [Max load (kg)] => 120
        [Warranty (years)] => 3
        [Height adjustable] => Yes
        [Back tilt adjustment] => Yes
        [Chair height range (mm)] => 880 - 950
        [Chair seat width (mm)] => 500
        [Chair seat depth (mm)] => 480
        [Chair back height (mm)] => 410
        [Chair back width (mm)] => 420
        [Seat height range (mm)] => 440 - 580
        [image] => https://cdn.shopify.com/s/files/1/1249/7859/files/Chair.png?18135080827462508830
        [Seat tilt adjustment] => Yes
        [Optional adjustable arms] => Yes
    )

結果數組var_dump的形式:

          [1]=>
      array(14) {
        ["Assembly required"]=>
        string(3) "Yes"
        ["Max load (kg)"]=>
        string(3) "120"
        ["Warranty (years)"]=>
        string(1) "3"
        ["Height adjustable"]=>
        string(3) "Yes"
        ["Back tilt adjustment"]=>
        string(3) "Yes"
        ["Chair height range (mm)"]=>
        string(9) "880 - 950"
        ["Chair seat width (mm)"]=>
        string(3) "500"
        ["Chair seat depth (mm)"]=>
        string(3) "480"
        ["Chair back height (mm)"]=>
        string(3) "410"
        ["Chair back width (mm)"]=>
        string(3) "420"
        ["Seat height range (mm)"]=>
        string(9) "440 - 580"
        ["image"]=>
        string(80) "https://cdn.shopify.com/s/files/1/1249/7859/files/Chair.png?18135080827462508830"
        ["Seat tilt adjustment"]=>
        string(3) "Yes"
        ["Optional adjustable arms"]=>
        string(3) "Yes"
      }

例如 在上面的結果數組中, [image]向上方移動,像這樣。

您可以使用

array_filter()

它將濾除數組中的所有空值和null值。

官方文件

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM