Answers for "array combine php"

PHP
2

array_combine function in php

/* Array_combine is inbuilt function in php, which is use to combine two array in key value pair */
/* make sure both array should be of same length */

<?php
$fname=array("Peter","Ben","Joe");
$age=array("35","37","43");

$c=array_combine($fname,$age);
print_r($c);
?>

/*
Output:
Array ( [Peter] => 35 [Ben] => 37 [Joe] => 43 )
*/
  
/*
I hope it will help you.
Namaste
Stay home stay safe
*/
Posted by: Guest on May-28-2020
5

php combine arrays

$output = array_merge($array1, $array2);
Posted by: Guest on June-03-2020
1

php combine values of two arrays

$all_arrays = array_merge($array1, $array2, $array3, ...);
Posted by: Guest on October-31-2020
0

associative array in php have same value join them

<?php
$a = array('green', 'red', 'yellow');
$b = array('avocado', 'apple', 'banana');
$c = array_combine($a, $b);

print_r($c);
?>
Posted by: Guest on October-24-2020
-1

merge array php

<?php
$array1    = array("color" => "red", 2, 4);
$array2    = array("a", "b", "color" => "green", "shape" => "trapezoid", 4);
$resultado = array_merge($array1, $array2);
print_r($resultado);
?>
Posted by: Guest on May-15-2020
2

php array merge

array_merge ([ array $... ] ) : array
Posted by: Guest on August-31-2020

Browse Popular Code Answers by Language