Associative Arrays In PHP

PHP associative arrays, refers to a collection of elements that are stored as a pair of key-value pairs in a single variable.

We will explore how PHP associative arrays works, how to create them, and how to manipulate them in this article.

In associative arrays, the index can be a string, a number, or even another variable, unlike indexed arrays, where the index is an integer. It’s easy to retrieve and manipulate data based on a key.



PHP Associative Arrays

With PHP Arrays Associative, you can use named keys to assign keys to arrays.

PHP associative arrays can be created in two ways:

$marks = array(
"Science"=>90,
"Mathematic"=>80,
"English"=>86,
"Computer Studies"=>84,
"Geography"=>96);

Or second method to create an associative array is:

$john_marks["Science"] = 90;
$john_marks["Mathematic"] = 80;
$john_marks["English"] = 86;
$john_marks["Computer Studies"] = 84;
$john_marks["Geography"] = 96;

Scripts can then be written by using the named keys as follows:

Example: 

<?php $john_marks = array( "Science"=>90, "Mathematic"=>80, "English"=>86, "Computer Studies"=>84, "Geography"=>96); echo "John get " . $john_marks["Mathematic"] . " in Mathematics."; ?>
In the example below, let’s create an associative array of user_info and print the data:

Example: 

<?php $user_info = array( "FirstName"=>"Mark", "LastName"=>"Zuckerberg", "Age"=>38, "Gender"=>"M", ); echo $user_info["FirstName"] . " " . $user_info["LastName"]. " is " . $user_info["Age"] . " years old. <br>"; echo "And he is the CEO of Facebook"; ?>

PHP Associative Arrays examples


PHP Associative Array Loop

In order to loop through an associative array, there are a variety of techniques that can be used.

As an example of how to loop through an associative array in PHP, here is the most common way that you may find useful.

Foreach loops are commonly used in PHP to loop associative arrays.

For each iteration, a block of code will be executed over each pair of keys-values in the array.

Following is an example of looping through each element of an associative array:

Example: 

<?php $john_marks = array( "Science"=>90, "Mathematic"=>80, "English"=>86, "Computer Studies"=>84, "Geography"=>96); foreach($john_marks as $a => $a_value) { echo $a . "= " . $a_value. "<br>"; echo " "; } ?>

Here is another example for clear understanding of looping through elements of an associative array:

Example: 

<?php $user_info = array( "FirstName"=>"Mark", "LastName"=>"Zuckerberg", "Age"=>38, "Gender"=>"M", ); foreach($user_info as $field => $value) { echo $field . " = " . $value. "<br>"; echo " "; } ?>

Example Explanation

First we have created an associative array called $user_info. It uses a foreach loop to iterate over its elements and print the keys and values to the screen.

The $user_info array contains four elements, each with a string key and a corresponding value.

The keys are “FirstName”, “LastName”, “Age”, and “Gender”, and their respective values are “Mark”, “Zuckerberg”, 38, and “M”.

The foreach loop uses two variables, $field and $value, to represent the key and value of each element in the array.

The $field variable represents the key or field name, while the $value variable represents the corresponding value.

The echo statement inside the loop is used to print the key and value of each element of the array to the screen. This is separated by an equal sign and a space. The line break <br> is used to move to a new line after each key-value pair.

So, when the loop is executed, the output will be:

PHP Associative Arrays

This is because the loop iterates over each element of the $user_info array and prints its key and value to the screen.

We value your feedback.
+1
0
+1
0
+1
0
+1
0
+1
0
+1
0
+1
0

Subscribe To Our Newsletter
Enter your email to receive a weekly round-up of our best posts. Learn more!
icon

Leave a Reply

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