An array is a collection of data items stored under a single name. Array provides a mechanism for declaring and accessing several data items with only one identifier, thereby simplifying the task of data management.
we use an array when we have to deal with multiple data items.
There are three types of array.
1. Numeric/Indexed array.
2. Associative array.
3. Multidimensional Array.
Numeric/Indexed array
When an array index is represented by a number, it is called Numeric/Indexed array. By default, numeric array index starts from 0.
Syntax:- $array_name [0] = Value;
For Example:- $name[0]= “Sushant”;
Sample program
<?php
$name [0]= “Sushant”;
echo $name[0];
?>
Output:- Sushant
Associative array.
When an array index is represented by a String, it is called Associative array.
For Example:- $Fee [“Sushant”] = 520;
Multidimensional Array.
Arrays of Arrays is known as Multidimensional Array.
- What is On-Page Optimization and Off-page Optimization - March 14, 2024
- [SOLVED] Flutter : PlatformException(sign_in_failed, com.google.android.gms.common.api.ApiException: 10: , null, null) - December 7, 2021
- [Solved] Flutter : Error: The getter ‘subhead’ isn’t defined for the class ‘TextTheme’ from package:flutter/src/material/text_theme.dart’ – searchable_dropdown - December 6, 2021