how to concatenate two array element values in php by special charcter?

China☆狼群 提交于 2019-12-07 00:13:25

Try with array_map like this

$combined = array_map(function($a, $b) { return $a . ' : ' . $b; }, $array1, $array2));
Brissan
$a1 = new ArrayIterator($array1);
$a2 = new ArrayIterator($array2);

$it = new MultipleIterator;

$it->attachIterator($a1);

$it->attachIterator($a2);

foreach($it as $e) {

        $array3[] = $e[0]." : ".$e[1]);
}

do this , $combined_array is your answer

$array1 = Array
(
    [0] => 2013-07-09
    [1] => 2013-07-16
    [2] => 2013-07-23
    [3] => 2013-07-30
);
$array2 = Array
(
    [0] => 2013-07-16
    [1] => 2013-07-23
    [2] => 2013-07-30
    [3] => 2013-08-06

);
$combined_array = array();
foreach($array1 as $key=>$value)
{
    $combined_array[$key]=$value." : ".$array2[$key];
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!