respect-validation/data/iso_3166-2/TZ.php
Alexandre Gomes Gaigalas 6173757f63 Use PHP files and setup a runtime cache for CountryInfo
Previously, we were loading country info from a JSON file. This
changes it to use PHP files instead. It also caches these resources
across calls avoiding these files to be loaded more than once
per process.
2023-02-19 00:19:10 -03:00

38 lines
816 B
PHP

<?php
return [
"country" => "Tanzania, United Republic of",
"subdivisions" => [
"01" => "Arusha",
"02" => "Dar es Salaam",
"03" => "Dodoma",
"04" => "Iringa",
"05" => "Kagera",
"06" => "Pemba North",
"07" => "Zanzibar North",
"08" => "Kigoma",
"09" => "Kilimanjaro",
"10" => "Pemba South",
"11" => "Zanzibar South",
"12" => "Lindi",
"13" => "Mara",
"14" => "Mbeya",
"15" => "Zanzibar West",
"16" => "Morogoro",
"17" => "Mtwara",
"18" => "Mwanza",
"19" => "Coast",
"20" => "Rukwa",
"21" => "Ruvuma",
"22" => "Shinyanga",
"23" => "Singida",
"24" => "Tabora",
"25" => "Tanga",
"26" => "Manyara",
"27" => "Geita",
"28" => "Katavi",
"29" => "Njombe",
"30" => "Simiyu",
"31" => "Songwe"
]
];