“PHP -Array fusioniert ohne Array_Merge” Code-Antworten

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
)
Alberto Peripolli

PHP -Array fusioniert ohne Array_Merge

$arr1 = array("color1" => "red", "color2" => "blue");
$arr2 = array("color1" => "black", "color3" => "green");
$arr3 = $arr1 + $arr2; //result is array("color1" => "red", "color2" => "blue", "color3" => "green");
gtamborero

Ähnliche Antworten wie “PHP -Array fusioniert ohne Array_Merge”

Fragen ähnlich wie “PHP -Array fusioniert ohne Array_Merge”

Weitere verwandte Antworten zu “PHP -Array fusioniert ohne Array_Merge” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen