I want to make one static application in PHP so I need some information about array of array concept in PHP to use in my static application. So please provide me some information about this.
I want to make one static application in PHP so I need some information about array of array concept in PHP to use in my static application. So please provide me some information about this.
The array of array concept is utilized to control various sub-variables using one variable in programming. This concept utilized in every programming language to save many variables of similar types. Also called Multidimensional array which has two types:
1- Two-dimensional Arrays
2- Three-dimensional Arrays
Build the array of array as you make single dimensional array but there is some bit difference with building. Use nested structure to define that array of array shown below :
As one dimensional array is defined covered with one array so this known as array of array.Code:<?php $<Variable_name> = array( array( ) //one dimensional array array( ) // One dimensional array ); ?>
Bookmarks