Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services — all in one place.

Explore Hospitals

Array and Its Type in PHP.

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.

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services — all in one place.

Explore Hospitals

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.