Pacific/Auckland

L’heure et la date locales actuelles dans le fuseau horaire Pacific/Auckland.

UTC+13:00

Loading...
Loading...

Profil du fuseau horaire

Décalage+13:00
Fuseau horaire IANAPacific/Auckland
Heure d’étéDisponible

Les pays qui utilisent le fuseau horaire Pacific/Auckland sont 🇦🇶 Antarctique and 🇳🇿 Nouvelle-Zélande.

Standards de format de date et d’heure

Le tableau fournit une comparaison côte à côte de différents standards de format de date et d’heure. Chaque ligne représente un standard de format unique tel que ATOM, COOKIE, ISO et RFC, entre autres.
Format
Date et heure
ATOM2026-03-25T02:13:47.979+13:00
COOKIEWed, 25 Mar 2026 02:13:47 +1300
HTTPTue, 24 Mar 2026 13:13:47 GMT
ISO2026-03-25T02:13:47.979+13:00
ISO 86012026-03-25T02:13:47.979+13:00
MM-dd-yyyy HH:mm:ss03-25-2026 02:13:47
MongoDB2026-03-24T13:13:47.979Z
MySQL DATETIME2026-03-25 02:13:47
RFC 1036Wed, 25 Mar 26 02:13:47 +1300
RFC 1123Wed, 25 Mar 2026 02:13:47 +1300
RFC 2822Wed, 25 Mar 2026 02:13:47 +1300
RFC 33392026-03-25T02:13:47+1300
RFC 7231Wed, 25 Mar 2026 02:13:47 GMT+13
RFC 822Wed, 25 Mar 26 02:13:47 +1300
RFC 850Wednesday, 25-Mar-26 02:13:47 GMT+13
RSSWed, 25 Mar 2026 02:13:47 +1300
SQL2026-03-25 02:13:47.979 +13:00
SQL Time02:13:47.979 +13:00
UTC2026-03-24T13:13:47.979Z
Unix Epoch1774358027
W3C2026-03-25T02:13:47+13:00
dd-MM-yyyy HH:mm:ss25-03-2026 02:13:47
yyyy-dd-MM HH:mm:ss2026-25-03 02:13:47
yyyy-dd-MM hh:mm:ss a2026-25-03 02:13:47 AM

Fuseaux horaires associés

Un tableau avec une liste de fuseaux horaires qui ont le même décalage. Inclut le nom et les abréviations de fuseau horaire.

Il y a 10 fuseaux horaires dans le tableau.
Fuseau horaire IANA
Nom du décalage
Abbr
Antarctica/McMurdoheure d’été de la Nouvelle-ZélandeUTC+13
Antarctica/South_Poleheure d’été de la Nouvelle-ZélandeUTC+13
Etc/GMT-13UTC+13:00UTC+13
NZheure d’été de la Nouvelle-ZélandeUTC+13
Pacific/Apiaheure normale d’ApiaUTC+13
Pacific/Aucklandheure d’été de la Nouvelle-ZélandeUTC+13
Pacific/Enderburyheure des îles PhoenixUTC+13
Pacific/Fakaofoheure de TokelauUTC+13
Pacific/Kantonheure des îles PhoenixUTC+13
Pacific/Tongatapuheure normale des TongaUTC+13

Pour les développeurs

php


<?php

// Solution 1
// Set the default time zone
date_default_timezone_set('Pacific/Auckland');

// Solution 2
// Use this to get the current date and time in the specified time zone.
$timezone = new DateTimeZone('Pacific/Auckland');
// Create a new DateTime object
$date = new DateTime('now', $timezone);
// Print the current date and time
echo $date->format('Y-m-d H:i:s'); // 2023-01-01 00:00:00

python


# Solution 1
# Set the default time zone
from datetime import datetime
# Import the pytz module
import pytz
  
# Create a timezone object
tz = pytz.timezone("Pacific/Auckland")
# Get the current time
time_now = datetime.now(tz)
# Format the current time
current_time = time_now.strftime("%H:%M:%S")
  
# Print the current time
print("The current time:", current_time) # The current time: 00:00:00

javascript


/* 
* Solution 1
* Set the default time zone
*/
const date = new Date();
/* 
* Use the toLocaleString() method to get the current date and time in the specified time zone.
*/
const currentTime = date.toLocaleString("en-us", {timeZone: "Pacific/Auckland"});
/* 
* Print the current date and time
*/
console.log(currentTime); // 1/1/2023, 12:00:00 AM