What I'm trying to do, is read a text file and place the text that matches something predefined. When I would go about creating the multidimensional arrays for this in Java it would go like this:
Code: Select all
int[][][] MultiArray = new int[3][6][3]Code: Select all
$a = array( 'color' => 'red',
'taste' => 'sweet',
'shape' => 'round',
'name' => 'apple',
4 // key will be 0
);Thanks