怎么把这两个函数相同的键值相加形成新的数组

WBOY
Release: 2016-06-23 13:57:36
Original
912 people have browsed it

<?php$a1 = '10,20,30,40;1,2,3,4';//分号无限往后扩展$a = explode(';', $a1);$b1 = '11111;22222';//分号无限往后扩展,能与$a1对齐叠加$b = explode(';', $b1);print_r($a);print_r($b);?>
Copy after login

输出:
Array ( [0] => 10,20,30,40 [1] => 1,2,3,4 ) Array ( [0] => 11111 [1] => 22222 )

我想实现的是:
Array ( [0] => 10,20,30,40,11111 [1] => 1,2,3,4,22222)

试过array_merge_recursive() 没效果,请教高手帮帮忙!研究好几天了


回复讨论(解决方案)

$a1 = '10,20,30,40;1,2,3,4';//分号无限往后扩展$a = explode(';', $a1);$b1 = '11111;22222';//分号无限往后扩展,能与$a1对齐叠加$b = explode(';', $b1);$c = array_map(null, $a, $b);print_r($c);
Copy after login
Array(    [0] => Array        (            [0] => 10,20,30,40            [1] => 11111        )    [1] => Array        (            [0] => 1,2,3,4            [1] => 22222        ))
Copy after login

$a1 = '10,20,30,40;1,2,3,4';//分号无限往后扩展$a = explode(';', $a1);$b1 = '11111;22222';//分号无限往后扩展,能与$a1对齐叠加$b = explode(';', $b1); $c=array();foreach($a as $key=>$value){    $c[]=$value.",".$b[$key];}echo '<pre class="brush:php;toolbar:false">';print_r($c);
Copy after login

$a1 = '10,20,30,40;1,2,3,4';//分号无限往后扩展$a = explode(';', $a1);$b1 = '11111;22222';//分号无限往后扩展,能与$a1对齐叠加$b = explode(';', $b1);function combine($arr){	return implode(',',$arr);}$c = array_map('combine', array_map(null, $a, $b));print_r($c);
Copy after login



Array
(
    [0] => 10,20,30,40,11111
    [1] => 1,2,3,4,22222
)

感谢各位高手解答!问题已解决!

Related labels:
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