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

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

PHP - 切片嵌套數(shù)組

PHP - 切片嵌套數(shù)組

PHP
嚕嚕噠 2023-03-04 14:30:59
我有兩個(gè)不同長(zhǎng)度的嵌套數(shù)組。我想根據(jù)第一個(gè)數(shù)組制作第二個(gè)數(shù)組的長(zhǎng)度,請(qǐng)參閱下面的示例以了解情況。只需刪除第一個(gè)數(shù)組中不存在的所有項(xiàng)目。有時(shí)第二個(gè)數(shù)組比第一個(gè)數(shù)組有更多的值,在這種情況下我的樹(shù)結(jié)構(gòu)中斷了。這些數(shù)組是嵌套數(shù)組,所以簡(jiǎn)單的 array_slice 不起作用。這是數(shù)組的結(jié)構(gòu)。第一個(gè)數(shù)組 "1": {    "id": "1",    "username": "username",    "children": [      {        "id": "-1",        "username": "NULL",        "children": [          {            "id": "-1",            "username": "NULL",            "children": [              {                "id": "-1",                "username": "NULL",                "children": []              }            ]          }        ]      }    ]  }第二陣列"157": {    "id": "157",    "username": "test1",    "children": [      {        "id": "158",        "username": "test1",        "children": [          {            "id": "159",            "username": "test2",            "children": [              {                "id": "160",                "username": "test3",                "children": []              },              {                "id": "160",                "username": "KICK ME BECAUSE I M NOT EXIST IN FIRST ARRAY",                "children": []              }            ]          }        ]      },      {        "id": "160",        "username": "KICK ME BECAUSE I M NOT EXIST IN FIRST ARRAY",        "children": [          {            "id": "159",,            "username": "KICK ME BECAUSE I M NOT EXIST IN FIRST ARRAY",            "children": [              {                "id": "161",                "username": "KICK ME BECAUSE I M NOT EXIST IN FIRST ARRAY",                "children": []              }            ]          }        ]      }    ]  }我想做的是完全刪除第一個(gè)數(shù)組中不存在的那些數(shù)組子項(xiàng)。我正在構(gòu)建一個(gè)最多三層的二叉樹(shù)。第一個(gè)數(shù)組已經(jīng)有一個(gè)空值的二叉樹(shù)。第二個(gè)數(shù)組是來(lái)自數(shù)據(jù)庫(kù)的數(shù)據(jù),我只是使用 array_replace 將空數(shù)據(jù)替換為實(shí)際數(shù)據(jù)。在第二個(gè)數(shù)組比第一個(gè)數(shù)組有更多的值之前,這一直很好用。所以為了讓它工作,我必須刪除那些額外的元素。任何人都可以幫助我使那里的長(zhǎng)度相同。任何幫助將不勝感激。提前致謝。
查看完整描述

1 回答

?
蕭十郎

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

發(fā)生了 Stack Overflow 奇跡......我得到了一個(gè)遞歸代碼片段來(lái)處理第一遍!通常我要花一兩個(gè)小時(shí)才能寫出有用的東西。

我不知道我是否可以使它更緊/更好,或者它是否會(huì)在任何邊緣情況下失敗,但是:

  1. 它適用于您的樣本輸入

  2. 對(duì)我來(lái)說(shuō)現(xiàn)在是午夜,我累了,我必須在早上工作

實(shí)際上,只要結(jié)構(gòu)數(shù)組中存在相同級(jí)別的鍵,它就會(huì)同步遞歸地迭代每個(gè)數(shù)組并將條目數(shù)組的每個(gè)級(jí)別存儲(chǔ)到輸出數(shù)組。

代碼:(演示

function truncateRecursive($structure, $entry) {

    $output = [];

    while (($structureKey = key($structure)) !== null && ($entryKey = key($entry)) !== null) {

        $output[$entryKey] = !is_array($entry[$entryKey])

            ? $entry[$entryKey]

            : truncateRecursive($structure[$structureKey], $entry[$entryKey]);

        unset($structure[$structureKey], $entry[$entryKey]);    

    }

    return $output;

}


var_export(truncateRecursive($structure, $entry));

輸出:


array (

  157 => 

  array (

    'id' => '157',

    'username' => 'test1',

    'children' => 

    array (

      0 => 

      array (

        'id' => '158',

        'username' => 'test1',

        'children' => 

        array (

          0 => 

          array (

            'id' => '159',

            'username' => 'test2',

            'children' => 

            array (

              0 => 

              array (

                'id' => '160',

                'username' => 'test3',

                'children' => 

                array (

                ),

              ),

            ),

          ),

        ),

      ),

    ),

  ),

)


查看完整回答
反對(duì) 回復(fù) 2023-03-04
  • 1 回答
  • 0 關(guān)注
  • 165 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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