PHP: //Some ways:$items = $config->get("Name");$sth = $config->getAll();$items = $sth["Name"];//You can also foreach it if you need its entries:foreach($config->get("Name") as $i){ //Do something} While $config, as always, is your config file