“PHP combine des tableaux” Réponses codées

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 Merge 2 tableaux

<?php
  $array1 = [
      "color" => "green"
  ];
  $array2 = [
      "color" => "red", 
      "color" => "blue"
  ];
  $result = array_merge($array1, $array2);
?>

// $result
[
    "color" => "green"
    "color" => "red", 
    "color" => "blue"
]
TheDutchScorpion

PHP combine des tableaux

$output = array_merge($array1, $array2);
TC5550

php combine les valeurs de deux tableaux

$all_arrays = array_merge($array1, $array2, $array3, ...);
Xfantasia

fusion du tableau PHP

<?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
)
Bloody Greper

fusionner le tableau en php

$a1=array("red","green");
$a2=array("blue","green","yellow");
print_r(array_merge($a1,$a2));
Ankur

Réponses similaires à “PHP combine des tableaux”

Questions similaires à “PHP combine des tableaux”

Plus de réponses similaires à “PHP combine des tableaux” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code