Skip to content

Instantly share code, notes, and snippets.

@jimjam88
Forked from stevelacey/counties.php
Last active August 26, 2015 11:24
Show Gist options
  • Save jimjam88/0a0cd15a4ca0f5e37045 to your computer and use it in GitHub Desktop.
Save jimjam88/0a0cd15a4ca0f5e37045 to your computer and use it in GitHub Desktop.
UK Counties Array
<?php
$areas = [
'England' => [
'Avon',
'Bedfordshire',
'Berkshire',
'Buckinghamshire',
'Cambridgeshire',
'Cheshire',
'Cleveland',
'Cornwall',
'Cumbria',
'Derbyshire',
'Devon',
'Dorset',
'Durham',
'East Sussex',
'Essex',
'Gloucestershire',
'Hampshire',
'Herefordshire',
'Hertfordshire',
'Isle of Wight',
'Kent',
'Lancashire',
'Leicestershire',
'Lincolnshire',
'London',
'Merseyside',
'Middlesex',
'Norfolk',
'Northamptonshire',
'Northumberland',
'North Humberside',
'North Yorkshire',
'Nottinghamshire',
'Oxfordshire',
'Rutland',
'Shropshire',
'Somerset',
'South Humberside',
'South Yorkshire',
'Staffordshire',
'Suffolk',
'Surrey',
'Tyne and Wear',
'Warwickshire',
'West Midlands',
'West Sussex',
'West Yorkshire',
'Wiltshire',
'Worcestershire'
],
'Wales' => [
'Clwyd',
'Dyfed',
'Gwent',
'Gwynedd',
'Mid Glamorgan',
'Powys',
'South Glamorgan',
'West Glamorgan'
],
'Scotland' => [
'Aberdeenshire',
'Angus',
'Argyll',
'Ayrshire',
'Banffshire',
'Berwickshire',
'Bute',
'Caithness',
'Clackmannanshire',
'Dumfriesshire',
'Dunbartonshire',
'East Lothian',
'Fife',
'Inverness-shire',
'Kincardineshire',
'Kinross-shire',
'Kirkcudbrightshire',
'Lanarkshire',
'Midlothian',
'Moray',
'Nairnshire',
'Orkney',
'Peeblesshire',
'Perthshire',
'Renfrewshire',
'Ross-shire',
'Roxburghshire',
'Selkirkshire',
'Shetland',
'Stirlingshire',
'Sutherland',
'West Lothian',
'Wigtownshire'
],
'Northern Ireland' => [
'Antrim',
'Armagh',
'Down',
'Fermanagh',
'Londonderry',
'Tyrone'
]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment