An array is a data structure that stores one or more similar type of values in a single value.
For example, if you were to store 100 numbers, then instead of defining 100 variables, it is easy to define an array of 100 length. Each value in the array is accessed using an id, which is called array index.
These arrays can store numbers, strings and any object, but their index will be represented by numbers. By default the array index starts from 0.
<?php
$num = array("1", "2", "3", "4", "5");
foreach($num as $val){
echo $val;
}
?>
Associative arrays are similar to numeric arrays in terms of functionality, but they are different in terms of their index.
Associative arrays will have their index as string so that a strong association between key and values is established.
<?php
$salary = array(
"John" => 2000,
"James" => 1000,
"Zara" => 2500,
);
echo "John's salary is ".$salary['John'];
//echo for the others
?>
A multi-dimensional array is one in which each element in the main array can also be an array, and each element in the sub-array can be an array as well. And it goes on and on.
Values in the multi-dimensional array are accessed using multiple index.
<?php
$marks = array("John" => array("Physics" => 30, "Math" => 20, "English" => 10), "Musa" => array("Physics" => 10, "Math" => 10, "English" => 10));
echo "John's score in physics is ".$marks['John']['Physics'];
?>
See PHP documentation for arrays
Regardless of whether TikTok faces a U.S. ban, Instagram is wasting no time positioning itself…
Amazon Web Services (AWS) continues to enhance its customer experience by offering more flexible payment…
JavaScript, often hailed as the "language of the web," continues to dominate the programming landscape…
Amazon is accelerating efforts to reinvent Alexa as a generative AI-powered “agent” capable of performing…
SpaceX's satellite-based Starlink, which is currently unlicensed for use in India, is reportedly being utilized…
Netflix, a pioneer in the streaming industry, has always been at the forefront of adopting…