Home  >  Article  >  Backend Development  >  Two ways to merge two two-dimensional arrays into one two-dimensional array in PHP_PHP Tutorial

Two ways to merge two two-dimensional arrays into one two-dimensional array in PHP_PHP Tutorial

WBOY
WBOYOriginal
2016-07-13 17:54:321227browse

Title: There are the following 2 two-dimensional arrays

1
$a=Array(0 => Array(id => 66,class_name => www.iiwnet.com),1 => Array(id => 67,class_name => linux ));
2
$b=Array(0 => Array(class_count=> 8),1 => Array(class_count => 2));
The contents of the two arrays are as above. How to merge $a and $b into a new two-dimensional array? The content of the new array is required to be as follows:

1
Array(0 => Array(id => 66, class_name => www.iiwnet.com, class_count => 8), 1 => Array(id => 67, class_name => linux, class_count => 2));
Someone must have encountered this problem. Someone asked it in the group today and I gave two solutions
The following code is originally provided by PHP Tutorial Network
01
Method 1:
02

03
Function arrpreg(){
04
$a=Array(0 => Array(id => 66,class_name => www.iiwnet.com),1 => Array(id => 67,class_name => linux ));
05
           $b=Array(0 => Array(class_count=> 8),1 => Array(class_count => 2));
06
          $arr = array();
07
foreach ($a as $k => $r) {
08
foreach($r as $k1 => $r1){
09
                   $arr[$k][$k1] = $r1;
10
            }
11
                                                 12
foreach ($b as $k => $r) {
13
foreach($r as $k1 => $r1){
14
                   $arr[$k][$k1] = $r1;
15
            }
16
}
17
         return $arr;
18
}
19
$ar= arrpreg();
20
echo '

';<br>
21<br>
Print_r($ar);<br>
22<br>
echo '
';
23
?>
24

25
Method 2:
26

27
$a = array(0 => Array(id => 66, class_name => www.iiwnet.com),1 => Array(id => 67, class_name => linux ));
28
$b = array(0 => Array(class_count=> 8),1 => Array(class_count => 2));
29
$arr = array();
30
foreach($a as $k=>$r){
31
          $arr[] = array_merge($r,$b[$k]);
32
}
33
echo '
';<br>
34<br>
Print_r($arr);<br>
35<br>
echo '
';

http://www.bkjia.com/PHPjc/477952.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/477952.htmlTechArticleQuestion: There are the following 2 two-dimensional arrays 1 $a=Array(0 = Array(id = 66,class_name = www.iiwnet.com),1 = Array(id = 67,class_name = linux )); 2 $b=Array(0 = Array(class_count= 8),1 = Array...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn