Advertisements
Advertisements
Question
Explain Array concepts and their types.
Answer in Brief
Solution
Array is a concept that stores more than one value of same data type (homogeneous) in a single array variable. They are 3 types of array concepts in PHP.
- Indexed Arrays:
Arrays with a numeric index for the available values in array variable which contains key value pair as user/developer can take the values using keys. - Associative Arrays:
- Associative arrays are a key-value pair data structure.
- Instead of having storing data in a linear array, with associative arrays you can store your data in a collection and assign it a unique key which you may use for referencing your data.
- Multidimensional Arrays
- A multidimensional array is an array containing one or more arrays.
- PHP understands multidimensional arrays that are two, three, four, five, or more levels deep.
- However, arrays more than three levels deep are hard to manage for most people.
shaalaa.com
Array in PHP
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
PHP’s indexed array begin with position ______.
Associative arrays are a ____ pair data structure.
$ stud = array (“Roll” ⇒ “12501”,“Name” ⇒ “Hari”);
Identify the type of array.
Arrays more than ____ levels deep are hard to manage.
Define Array in PHP.
List out the types of the array in PHP.
Define associative array.
What are indexed arrays?
Explain the Multidimensional Array.
Explain Indexed array and Associate array in PHP.