I am using a multi-dimensional array to hold various things for a small CMS I am writing. Here is an example of my array:
$foo['config']['time_zone'] = '-6';
$foo['config']['admin_email'] = 'noyb@noyb.com';
I need to be able to retrieve the names of the items under the config level, which I will later use to retrieve the values. Is there any way to do this. The less lines of code the better.
Thanks in advance!
-Skudd