
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Multidimensional Associative Arrays in PHP: How to Retrieve Values
Multidimensional arrays store multiple arrays whereas associative arrays store key-value pairs as data. Grouped relation between data can be stored in multidimensional associative arrays.
Example
<?php $my_arr = array(); $my_arr['Employee'] = array( "Name" => "Joe", "Age" => "20", "Birth_date" => "2000", "Job_details" => array( "Position" => "Manager", "Salary" => "Lakhs" ) ); print_r($my_arr['Employee']['Name']); echo "
"; echo $my_arr['Employee']['Age']; ?>
Output
Joe 20
An array is defined that contains various attributes of an employee. The employee array is accessed based on the index names and the data is displayed on the console.
Advertisements