Code implementation of vertical merging & horizontal merging of two-dimensional arrays in PHP

不言
Release: 2023-04-03 20:52:01
Original
2409 people have browsed it

The content of this article is about the code implementation of vertical merging & horizontal merging of two-dimensional arrays in PHP. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

This article mainly shares with you the first merging method: merging an array through the array_merge method given by PHP's array API. I hope it can help everyone.

Code:

 $a = array(array("1","2"),array("3","4"));
$b = array(array("a","b"),array("c","d"));          
$c = array_merge($a,$b);
print_r($c);
Copy after login

Result:

After the combination of these methods, the b array is appended to the a array.

Second merging method:

Merge arrays through foreach loop

Code:

<?php
$a = array(array("1","2"),array("3","4"));
$b = array(array("a","b"),array("c","d"));  
foreach($a as $key=>$vo)
{
$list[] = array_merge($vo,$b[$key]);
} 
print_r($list);
Copy after login

Result:

After merging, this method inserts array b into array a.

Related recommendations:

Solution to float to int distortion in PHP

How to use cURL to call WebService to obtain weather information in PHP ( Code)

The above is the detailed content of Code implementation of vertical merging & horizontal merging of two-dimensional arrays in PHP. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!