php數組合并的二種方法

來源:互聯網
上載者:User

 這篇文章主要介紹了php數組合并的二種方法,同時講了用加號和用array_merge合并數組的區別,需要的朋友可以參考下

我們首先給出兩個數組 代碼如下:<?php   $r = array(1,2,3,4,5,6);   $e = array(7,8,9,10);  ?>   下面我們用array_merge和加號來何必這兩數組  代碼如下:<?php  print_r($r+e); // 輸出<span style="font-family: Simsun;font-size:16px; ">Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 ) </span>  print "<br />";  print_r(array_merge($r,$e)); // 輸出<span style="font-family: Simsun;font-size:16px; ">Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7 [7] => 8 [8] => 9 )</span>  ?>   從這裡可以看出,用array_merge合并數組一個數組中的值附加在前一個數組的後面。返回作為結果的數組如果數組包含數字鍵名,後面的值將不會覆蓋原來的值,而是附加到後面。 然而用加號來合并數組如果鍵名相同,則取最先出現的數組值,後面的就直接忽略掉 下面我們來改變下前面給出的數組  代碼如下:<?php   $r = array('r'=>1,2,3,4,5,6);   $e = array(<span style="background-color: rgb(245, 250, 255); ">'r'=></span>7,8,9,10);  ?>    代碼如下:<?php  print_r($r+e); // 輸出Array ( [r] => 1 [0] => 2 [1] => 3 [2] => 4 [3] => 5 [4] => 6 )  print "<br />";  print_r(array_merge($r,$e)); // 輸出Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7 [7] => 8 [8] => 9 )  ?>   從這裡可以看出,用array_merge合并數組一個數組中的值附加在前一個數組的後面。如果非數字鍵名相同,則後面數組的值會覆蓋前面數組的值。 然而用加號來合并數組如果鍵名相同,則取最先出現的數組值,後面的就直接忽略掉
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.