Crew-Portal Posted August 21, 2009 Share Posted August 21, 2009 <?php $config= array('site'=> array('connection'=> array('database'=>'SECRET', 'username'=>'SECRET', 'password'=>'SECRET', 'location'=>'localhost', 'type'=>'mysql'), array('settings'=> array('backgroundcolor'=>'#CEE1E9', 'contentcolor'=>'#FFFFFF', 'sidebarcolor'=>'#C8D1D5', 'textcolor'=>'#000000', 'linkcolor'=>'#002E6E', 'backgroundimage'=>null, 'disposition'=>1, 'language'=>'English'), array('name'=> array('sitename'=>'None', 'slogan'=>'None'), array('sessions'=> array('username'=>$_SESSION['valid_user'], 'user_id'=>$_SESSION['user_id']), array('server'=> array('file_quota'=>5000000, 'user_quota'=>50000000, 'monthly_quota'=>15000000, 'uploads'=>TRUE), array('uploads'=> array('image/png'=>TRUE, 'image/jpeg'=>TRUE, 'image/gif'=>TRUE, 'image/svg+xml'=>TRUE, 'audio/mpeg'=>TRUE, 'audio/x-speex'=>TRUE, 'application/ogg'=>TRUE, 'application/pdf'=>TRUE, 'application/vnd.oasis.opendocument.text'=>TRUE, 'application/vnd.oasis.opendocument.text-template'=>TRUE, 'application/vnd.oasis.opendocument.graphics'=>TRUE, 'application/vnd.oasis.opendocument.graphics-template'=>TRUE, 'application/vnd.oasis.opendocument.presentation'=>TRUE, 'application/vnd.oasis.opendocument.presentation-template'=>TRUE, 'application/vnd.oasis.opendocument.spreadsheet'=>TRUE, 'application/vnd.oasis.opendocument.spreadsheet-template'=>TRUE, 'application/vnd.oasis.opendocument.chart'=>TRUE, 'application/vnd.oasis.opendocument.chart-template'=>TRUE, 'application/vnd.oasis.opendocument.image'=>TRUE, 'application/vnd.oasis.opendocument.image-template'=>TRUE, 'application/vnd.oasis.opendocument.formula'=>TRUE, 'application/vnd.oasis.opendocument.formula-template'=>TRUE, 'application/vnd.oasis.opendocument.text-master'=>TRUE, 'application/vnd.oasis.opendocument.text-web'=>TRUE, 'application/x-zip'=>TRUE, 'application/zip'=>TRUE, 'text/plain'=>TRUE, 'video/mpeg'=>TRUE, 'video/mp4'=>TRUE, 'video/quicktime'=>TRUE, 'video/mpeg'=>TRUE) ))))))); ?> The following script works fine but when I call the array I have to do it like so.. $config['site'][0]['settings']['backgroundcolor']; But I would like to access it by $config['site']['settings']['backgroundcolor']; Any ideas on how to remove that useless integer value? Link to comment https://forums.phpfreaks.com/topic/171333-2d-array-cleanup/ Share on other sites More sharing options...
Daniel0 Posted August 21, 2009 Share Posted August 21, 2009 You already have one topic about this. Link to comment https://forums.phpfreaks.com/topic/171333-2d-array-cleanup/#findComment-903557 Share on other sites More sharing options...
Recommended Posts