What are the types of array? Explain with example?

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours scrolling social media and waste money on things we forget, but won’t spend 30 minutes a day earning certifications that can change our lives.
Master in DevOps, SRE, DevSecOps & MLOps by DevOps School!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

We have three types of array in PHP

  • Index arrays
  • associative arrays
  • multidimensional arrays

1. Index Array (Numeric Array)

These arrays can store numbers, strings and any object but their index will be represented by numbers. By default array index starts from zero.

We can use index array in two ways

First way

<?php 
    // first way

  $subjects=array("c++","php","java","os");  


    echo " subjects: $c++[0],$php[1],$java[2],$os[3]"; 
 
?>  

output

subjects: c++,php,java,os

Second way

<?php  
     // second way

     $subjects[0]="c++";
  
     $subjects[1]="php";  
      $subjects[2]="java";  
      $subjects[3]="os"; 
 
      echo "subjects: $c++[0],$php[1],$java[2],$os[3]";  

?>  

output

subjects: c++,php,java,os

2. Associative Array

These types of arrays are similar to the indexed arrays but instead of linear storage, every value can be assigned with a user-defined key of string type. 

Associative array is also used in two ways

First way to use associative array
<?php  

    // first way  
     $marks=array("c++"=>"23","php"=>"24","java"=>"25"); 
   
   echo "c++: ".$marks["c++"]."<br/>";  

      echo "php: ".$marks["phpjava"]."<br/>";  

    echo "java: ".$marks["Kartik"]."<br/>";  

?>    

output

c++:23
php:24
java:25
Second wat to use associative array
<?php    
     
  // second way
    $marks["c++"]="23";
    
    $marks["php"]="24";    
    $marks["java"]="25";  
  
   echo "c++  ".$marks["c++"]."<br/>";  
   echo "php  ".$marks["php"]."<br/>";  

   echo "java  ".$marks["java"]."<br/>";  

?>   

output

c++  23
php  24
java  25

3. Multidimensional Array

A multi-dimensional array each element in the main array can also be an array. And each element in the sub-array can be an array, and so on. Values in the multi-dimensional array are accessed using multiple index.

exmple

      
      <?php
         $marks = array( 
            "c++" => array (
               "practicals" => 22,
               "internal1" => 23,	
               "internal2" => 24
            ),
            
            "php" => array (
               "practicals" => 23,
               "internal1" => 24,	
               "internal2" => 25
            ),
            
            "java" => array (
               "practicals" => 25,
               "internal1" => 26,	
               "internal2" => 27
            )
         );
         
         
         echo "Marks for c++ in practicals : " ;
         echo $marks['c++']['practicals'] . "<br />"; 
         
         echo "Marks for php in internal1 : ";
         echo $marks['php']['internal1'] . "<br />"; 
         
         echo "Marks for java in internal2 : " ;
         echo $marks['java']['internal2'] . "<br />"; 
      ?>
   

output

Marks for c++ in practicals : 22
Marks for php in internal1 : 24
Marks for java in internal2 : 27

Related Posts

Mastering the DevOps Salary Landscape: A Comprehensive Guide

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps! We spend hours scrolling social media and waste money on things we forget, but won’t spend 30…

Read More

The Complete DevOps Certification Guide: From Beginner to Expert Architect

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps! We spend hours scrolling social media and waste money on things we forget, but won’t spend 30…

Read More

A Guide to Selecting the Right DevOps Training Format

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps! We spend hours scrolling social media and waste money on things we forget, but won’t spend 30…

Read More

DevOps Certification Training: Identifying Quality and Expertise

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps! We spend hours scrolling social media and waste money on things we forget, but won’t spend 30…

Read More

Complete DevOps Training Guide for Assessing Mentor Technical Competence

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps! We spend hours scrolling social media and waste money on things we forget, but won’t spend 30…

Read More

Mastering Your Future: The Complete Guide to the Canada PR CRS Calculator

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps! We spend hours scrolling social media and waste money on things we forget, but won’t spend 30…

Read More
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x