PHP array_combine: How to Merge Arrays as Key and Value

php array combine

The array_combine function in PHP creates a new array with one array for keys and another for values.

It needs both arrays to have the same size and order, or the function will not work.

You can use it when you want to connect two arrays in a single structure.
The first array sets the keys, and the second array sets the values.

Understand the array_combine in PHP

The function creates an array from two arrays, where the first sets the keys and the second sets the values.

Here is the syntax:

array_combine(array $keys, array $values): array

The function takes two arrays and returns one array.

Here are the reasons to use it:

  • You may want to build a new array from two lists.
  • You can use names as keys and numbers as values.
  • You can also map data from one source to another.

For a quick example:

$names = ["Tom", "Sara", "Mike"];
$ages = [25, 30, 22];
$result = array_combine($names, $ages);
print_r($result);

This example shows that the keys are names and the values are ages.
Hence, the new array looks like:

Array
(
[Tom] => 25
[Sara] => 30
[Mike] => 22
)

Examples of array_combine with Different Arrays in PHP

Create Product and Price Array:

$products = ["Book", "Pen", "Bag"];
$prices = [10, 2, 25];
$result = array_combine($products, $prices);
print_r($result);

This builds an array where each product has a price value. Here is the output:

Array
(
[Book] => 10
[Pen] => 2
[Bag] => 25
)

Map Country and Code:

$countries = ["USA", "UK", "India"];
$codes = ["US", "GB", "IN"];
$result = array_combine($countries, $codes);
print_r($result);

This connects each country with its code in one array. The output:

Array
(
[USA] => US
[UK] => GB
[India] => IN
)

Match Subject and Marks:

$subjects = ["Math", "English", "Science"];
$marks = [85, 90, 78];
$result = array_combine($subjects, $marks);
print_r($result);

This shows each subject with its mark in the array. Here is the output:

Array
(
[Math] => 85
[English] => 90
[Science] => 78
)

Combine Days and Numbers:

$days = ["Mon", "Tue", "Wed"];
$numbers = [1, 2, 3];
$result = array_combine($days, $numbers);
print_r($result);

This creates an array where days of the week link with numbers. The output:

Array
(
[Mon] => 1
[Tue] => 2
[Wed] => 3
)

Wrapping Up

You learned what array_combine does and how it works with two arrays.

Here is a quick recap:

  • The function takes one array for keys and one for values.
    Both arrays must have the same length. The function will fail if they don’t have the same length.
  • You can use it for names and ages or products and prices. Also, use it with any two lists.

FAQs

What does php array_combine do with arrays?

php array_combine creates a new array using one array for keys and another array for values. Example:
$keys = array("a", "b", "c");
$values = array(1, 2, 3);
$result = array_combine($keys, $values);
print_r($result);
Output: Array ( [a] => 1 [b] => 2 [c] => 3 )

What happens if arrays have different lengths in php array_combine?

array_combine requires both arrays to have the same number of elements. If not, it will throw an Fatal error. Example:
$keys = array("x", "y");
$values = array(10);
$result = array_combine($keys, $values);
Output: Fatal error: array_combine(): Both parameters should have an equal number of elements

How can you use php array_combine in real projects?

You can use php array_combine to map IDs to names, settings, or structured data. Example:
$ids = array(101, 102, 103);
$names = array("Ali", "Sara", "Omar");
$result = array_combine($ids, $names);
print_r($result);
Output: Array ( [101] => Ali [102] => Sara [103] => Omar )
  • Map user IDs with usernames
  • Create lookup tables
  • Build config arrays

Similar Reads

PHP Associative Array: Optimal Data Organization

The PHP associative array is a structured collection wherein data elements are organized into lists or groups. Each element is…

PHP Named Arguments vs. Positional Arguments

The PHP named arguments are the names of the arguments through which the values are passed, allowing you to add…

PHP OOP Programming: A Complete Tutorial

A complex web application needs proper organization and maintenance to keep your code structured. This is where PHP Object-Oriented Programming…

PHP Type Hints: Ensuring Data Integrity

PHP-type hinting is something that keeps your code in check and helps your functions receive just the right types of…

PHP is_file Function: Check if a File Exists

If you are working with PHP and need a way to confirm if something is indeed a file, the is_file function will…

PHP implode Function: Join Array Values into a String

The implode function in PHP appeared to solve a common need—joining array elements into a single string. It helps format…

PHP Array: Accessing and Managing Elements

PHP arrays are lists or maps that contain multiple values grouped by array keys. They may include integers, strings, booleans,…

MongoDB CRUD with PHP: Create, Read, Update, and Delete

PHP gives us the ability to work with MongoDB, highlighting the importance of CRUD (Create, Read, Update, Delete) operations for…

PHP array_merge: Combine Multiple Arrays into One

You have two or more arrays. You want one. That is the problem array_merge solves in PHP. This function lets…

PHP Functions: The Complete Guide for Beginners

So, what is a function? Quite simply, a function in PHP is a set of instructions you write once, and…

Previous Article

HTML kbd Tag: How to Show Keyboard Input with examples

Next Article

JavaScript Object Methods with Examples

Write a Comment

Leave a Comment

Your email address will not be published. Required fields are marked *


Subscribe to Get Updates

Get the latest updates on Coding, Database, and Algorithms straight to your inbox.
No spam. Unsubscribe anytime.