Heim >Backend-Entwicklung >PHP-Tutorial >Von PHP unterstützte Zeitzonenfreigabe
<?php$timeZones = DateTimeZone::listIdentifiers(); // $timeZones = DateTimeZone::listIdentifiers(DateTimeZone::PER_COUNTRY, 'CN'); // $timeZones = DateTimeZone::listIdentifiers(DateTimeZone::AFRICA | DateTimeZone::AMERICA);echo "<pre class="brush:php;toolbar:false">"; print_r($timeZones);echo "";exit;foreach ($timeZones as $key => $zoneName) { $tz = new DateTimeZone($zoneName); $loc = $tz->getLocation(); print($zoneName . " = " . $loc['comments'] . "
Verwandte Empfehlungen:
PHP unterstützte Zeitzonen-Instanzfreigabe
Das obige ist der detaillierte Inhalt vonVon PHP unterstützte Zeitzonenfreigabe. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!