Created
February 20, 2013 15:29
-
-
Save DavidBruchmann/4996341 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// demo-array | |
$arr_exampleArray = array( | |
'name' => 'fruits and vegetables', | |
'purpose' => 'demo and test only.', | |
'usage' => 'use, play and learn by changing.', | |
'fruits' => array( | |
'sower' => array( | |
'citron', | |
'gooseberry' | |
), | |
'sweet' => array( | |
'blueberry', | |
'orange', | |
'banana' | |
) | |
), | |
'vegetables' => array( | |
'roots' => array( | |
'potatoes', | |
'carottes' | |
) | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment