* @license http://www.opensource.org/licenses/mit-license.php MIT License */ $windows_timezones = []; $windowstimezonexml = new DOMDocument(); $windowstimezonexml->load('https://raw.githubusercontent.com/unicode-org/cldr/master/common/supplemental/windowsZones.xml'); $zones = $windowstimezonexml->getElementsByTagName('mapZone'); foreach ($zones as $zone) { if ($zone->getAttribute('territory') === '001') { $windows_timezones[$zone->getAttribute('other')] = $zone->getAttribute('type'); } } file_put_contents(__DIR__ . '/../src/WindowsTimezones.php', "