“fusionner trois tableau en php” 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

Array Marge en PHP

<?php
$a1=array("red","green");
$a2=array("blue","yellow");
print_r(array_merge($a1,$a2));
?>
Parth

fusionner trois tableau en php

$array1 = Array
(
    '05/01',
    '05/02'
);

    $array2 = Array
(
    'ED',
    'P'
);

$array3 =Array
(
    'Mon',
    'Tue'
);
$result_array = array();
foreach ($array1 as $key=>$val)
{
    $result_array[$key] = array($array1[$key],$array2[$key],$array3[$key]);
}
echo "<PRE>"; print_r($result_array);
Ankur

Réponses similaires à “fusionner trois tableau en php”

Questions similaires à “fusionner trois tableau en php”

Plus de réponses similaires à “fusionner trois tableau en php” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code