Results 1 to 3 of 3

Thread: Array of array in PHP

  1. #1
    Davismoore is offline Senior Member
    Join Date
    Dec 2009
    Posts
    284
    Rep Power
    3

    Default Array of array in PHP

    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.

  2. #2
    JacksonPerez is offline Banned
    Join Date
    Dec 2009
    Posts
    274
    Rep Power
    0

    Default

    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

  3. #3
    ThompsonHarris is offline Senior Member
    Join Date
    Dec 2009
    Posts
    255
    Rep Power
    3

    Default

    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 :

    Code:
    <?php
    $<Variable_name> = array(
                            array( ) //one dimensional array
                            array( ) // One dimensional array 
                         ); 
    ?>
    As one dimensional array is defined covered with one array so this known as array of array.

Similar Threads

  1. Dual Microphone Array - 2.0
    By MoralesMyers in forum Download Tools and Softwares
    Replies: 0
    Last Post: 07-08-2010, 03:12 PM
  2. Array basics in C++
    By arsenal in forum Programming
    Replies: 0
    Last Post: 10-05-2009, 12:36 PM
  3. Array
    By techno23 in forum General Software Terms
    Replies: 0
    Last Post: 03-26-2008, 10:39 AM
  4. Pin Grid Array
    By vandana43 in forum Processors
    Replies: 0
    Last Post: 03-19-2008, 11:06 AM
  5. Build a RAID Array
    By techno23 in forum Homebuilt Systems
    Replies: 0
    Last Post: 02-12-2008, 10:30 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48