Advertisements
Advertisements
प्रश्न
Explain Indexed array and Associate array 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.
Example:
<?php $teacher_name=array(“Iniyan”, “Kavin”, “Nilani”); echo “The students name are “ . $teacher_name[0]. “, “ . $$teacher_name[l]. “ and” . $teacher_name[2]. ?>
-
Associative Arrays:
- Associative arrays are a key-value pair data structure.
- nstead of having storing data in a, linear array, with associative arrays you can store your data.
Example:
<?php $Marks=array(“Student1”=>“35”,“Student2”==>“17”,“Student3”=>“43”); echo “Student1 mark is” . $Marks[‘Student1’]. “ is eligible for qualification”; echo “Student2 mark is” . $Marks[‘Student2’]. “ is not eligible for qualification”; ?>
shaalaa.com
Array in PHP
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
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 Array concepts and their types.