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

WBOY
WBOYOriginal
2016-07-13 09:50:59874browse

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;> 

<&#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;> 

<&#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;> 

<&#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;>

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...
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