Answers for "array_merge on value php"

PHP
14

php array_merge

<?php
$array1 = array("color" => "red", 2, 4);
$array2 = array("a", "b", "color" => "green", "shape" => "trapezoid", 4);
$result = array_merge($array1, $array2);
print_r($result);
?>
Array
(
    [color] => green
    [0] => 2
    [1] => 4
    [2] => a
    [3] => b
    [shape] => trapezoid
    [4] => 4
)
Posted by: Guest on June-25-2020
0

array_merge

<?php 
$array1 = array(1,"dos",3,4,"cinco",9);
$array2 = array(1,"hola",3,"adios",5,6);			
//muestro los arrays
var_export ($array1);
var_export ($array2);
//uno los arrays y muestro el array resultante
$array_resultante= array_merge($array1,$array2);
var_export ($array_resultante);
?>
Posted by: Guest on June-23-2021

Browse Popular Code Answers by Language