【已解決】php 數組合并的問題

來源:互聯網
上載者:User

遇到的問題:
當前有兩個數組,已知的是兩個數組中,數組1中的id等於數組2中的pid,問題是,要把數組2中的img_url合并到到數組1中對應的id下。

最終需要實現:

Array ( [0] => Array ( [id] => 7 [collection_id] => 1 [prize_num] => 1 [prize_name] => 立減20元 [total] => 10 ,**[url_img]=> /upload/business/1476342419.png** ) [1] => Array ( [id] => 8 [collection_id] => 1 [prize_num] => 2 [prize_name] => 全單8折 [total] => 20,**[url_img]=> /upload/business/1476348963.jpg**)

問題已解決

先跑第一個迴圈,在裡面跑第二個迴圈,去第二個數組找合格item    foreach ($shopPrizeName as $key => $value) {               foreach ($shopPImagesName as $k => $v) {                   if($value['id'] == $v['pid'])                   {                       $value['img_url']    =    $v['img_url'];                   }               }               $shopData[]    =    $value;           }           print_r($shopData);

回複內容:

遇到的問題:
當前有兩個數組,已知的是兩個數組中,數組1中的id等於數組2中的pid,問題是,要把數組2中的img_url合并到到數組1中對應的id下。

最終需要實現:

Array ( [0] => Array ( [id] => 7 [collection_id] => 1 [prize_num] => 1 [prize_name] => 立減20元 [total] => 10 ,**[url_img]=> /upload/business/1476342419.png** ) [1] => Array ( [id] => 8 [collection_id] => 1 [prize_num] => 2 [prize_name] => 全單8折 [total] => 20,**[url_img]=> /upload/business/1476348963.jpg**)

問題已解決

先跑第一個迴圈,在裡面跑第二個迴圈,去第二個數組找合格item    foreach ($shopPrizeName as $key => $value) {               foreach ($shopPImagesName as $k => $v) {                   if($value['id'] == $v['pid'])                   {                       $value['img_url']    =    $v['img_url'];                   }               }               $shopData[]    =    $value;           }           print_r($shopData);

看到你自己解決了, 再給你個方法

/** * 從多維陣列中抽取一列'img_url'組成新數組, 並使用多維陣列中的id作為key * 當然你也可以不用array_column自己通過foreach拼接這個數組 */$idImgMap = array_column($shopImageName, 'img_url', 'id'); foreach ($shopPrizeName as &$value) {    $value['img_url'] = $idImgMap[$value['id']];}

這個實現的演算法複雜度是 2O(n), 你的是O(n^2), 所以這個效能會更好一點

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.