The array_combine() is an inbuilt function in PHP which is used to combine two arrays and create a new array by using one array for keys and another array for values. That is all elements of one array will be the keys of new array and all elements of the second array will be the values of this new array.
Examples:
Input : $array1 = ("Ram", "Akash", "Rishav");
$array2 = ('24', '30', '45');
Output :
Array
(
[Ram] => 24
[Akash] => 30
[Rishav] => 45
)
Input : $array1 = ("65824", "92547", "12045");
$array2 = ('1', '2', '3');
Output :
Array
(
[65824] => 1
[92547] => 2
[12045] => 3
)
Syntax:
array_combine( $keys_array, $values_array )
Parameters: This function accepts two parameters and both are mandatory. The function parameters as listed below:
- $keys_array: This is an array of keys. If illegal values are passed as the key, then it will be converted into a string.
- $values_array: This is an array of values that is to be used in the new array.
Return Value: This function returns a new combined array, in which the elements from first array $keys_array represents keys in new array and the elements from second array $values_array represents the corresponding values in the new array. This function returns false if the number of elements in the two arrays are not same.
Below program illustrates the array_combine() function in PHP:
<?php
function Combine( $array1 , $array2 ) {
return ( array_combine ( $array1 , $array2 ));
}
$array1 = array ( "Ram" , "Akash" , "Rishav" );
$array2 = array ( '24' , '30' , '45' );
print_r(Combine( $array1 , $array2 ));
?>
|
Output:
Array
(
[Ram] => 24
[Akash] => 30
[Rishav] => 45
)
Note: The total number of elements in both of the arrays must be equal for the function to execute successfully otherwise it will throw an error.
Reference: https://www.php.net/manual/en/function.array-combine.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
20 Jun, 2023
Like Article
Save Article