Home > Backend Development > PHP Tutorial > PHP array merging and splitting example analysis, array splitting example analysis_PHP tutorial

PHP array merging and splitting example analysis, array splitting example analysis_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-13 09:50:59
Original
895 people have browsed it

PHP array merging and splitting example analysis, array splitting example analysis

The example in this article describes the method of php array merging and splitting. Share it with everyone for your reference. The details are as follows:

<&#63;php 
$array1 = array("A","B","C","D"); 
$array2 = array("1","2","3","4"); 
$array3 = array("!","@","#","$"); 
$arrayX = array_merge($array1, $array2, $array3);
//将3个数组合并起来 
print_r($arrayX); 
&#63;> 

Copy after login
<&#63;php 
$array1 = array("AA"=>"A","BB"=>"B","CC"=>"C","DD"=>"D"); 
$array2 = array("AA"=>"1","BB"=>"2","CC"=>"3","DD"=>"4"); 
$array3 = array("AA"=>"!","BB"=>"@","CC"=>"#","DD"=>"$"); 
$arrayX = array_merge($array1, $array2, $array3);
//合并数组 
print_r($arrayX); 
&#63;> 

Copy after login
<&#63;php 
$array1 = array("AA"=>"A","BB"=>"B","CC"=>"C","DD"=>"D"); 
$array2 = array("AA"=>"1","BB"=>"2","CC"=>"3","DD"=>"4"); 
$array3 = array("AA"=>"!","BB"=>"@","CC"=>"#","DD"=>"$"); 
$arrayX = array_merge_recursive($array1, $array2, $array3);
//合并数组 
print_r($arrayX); 
&#63;> 

Copy after login
<&#63;php 
$array = array(1,2,3,4,5,6,7,8,9); 
$arrayX = array_splice($array, 2, 6);
//获取数组的第2个元素到第7个元素 
print_r($array); 
print_r($arrayX); 
&#63;>
Copy after login

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1015428.htmlTechArticlePHP array merging and splitting example analysis, array splitting example analysis This article tells the php array merging and splitting example method. Share it with everyone for your reference. The details are as follows: php $array...
Related labels:
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template