πŸš€ DevOps & SRE Certification Program πŸ“… Starting: 1st of Every Month 🀝 +91 8409492687 πŸ” Contact@DevOpsSchool.com

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 DevOpsSchool!

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


Get Started Now!

What is Multidimensional array in PHP with Example?

Multidimensional Array is Arrays of Array means one arrays have multiple array. You can define as it have 2Dimensional ([][]), 3Dimensional ([][][]), 4Dimensional ([][][]), and etc.
ex:-

<?php
$a [0][] = "name";
$a [0][] = "name1";
$a [0][] = "name2";
echo $a[0][1];
echo "<br>";
$b [0][0][0] = "value";
$b [0][0][1] = "value1";
echo $b[0][0][1];
echo "<br>";
$c = array (
"value" => array ("cost" => 10, "first"=> 20, "second" => 30),
"value1" => array ("cost" => 100, "first"=> 200, "second" => 300),
"value2" => array ("cost" => 1000, "first"=> 2000, "second" => 3000),
"value3" => array ("cost" => 10000, "first"=> 20000, "second" => 30000)
);
echo $c["value"]["cost"];
echo "<br>";
echo $c["value1"]["second"];
echo "<br>";
echo $c["value3"]["first"];
echo "<br>";
?>

How to work:-
In this array first row or index or key any value necessary but second value not necessary to define. It can be created using nested array.

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.