Pacific/Chatham

Поточний місцевий час і дата в часовому поясі Pacific/Chatham.

UTC+12:45

Loading...
Loading...

Профіль часового поясу

Зсув+12:45
Перехід на літній часНедоступно
Часовий пояс IANAPacific/Chatham

Основною країною, яка використовує часовий пояс Pacific/Chatham, є 🇳🇿 Нова Зеландія.

Перехід на літній час

+1345

Стандартний час Доступно

+1245

Стандарти форматування дати й часу

Таблиця надає порівняння різних стандартів форматування дати й часу. Кожен рядок представляє окремий стандарт формату, такий як ATOM, COOKIE, ISO, RFC та інші.
Формат
Дата і час
ATOM2026-04-11T16:53:55.119+12:45
COOKIESat, 11 Apr 2026 16:53:55 +1245
HTTPSat, 11 Apr 2026 04:08:55 GMT
ISO2026-04-11T16:53:55.119+12:45
ISO 86012026-04-11T16:53:55.119+12:45
MM-dd-yyyy HH:mm:ss04-11-2026 16:53:55
MongoDB2026-04-11T04:08:55.119Z
MySQL DATETIME2026-04-11 16:53:55
RFC 1036Sat, 11 Apr 26 16:53:55 +1245
RFC 1123Sat, 11 Apr 2026 16:53:55 +1245
RFC 2822Sat, 11 Apr 2026 16:53:55 +1245
RFC 33392026-04-11T16:53:55+1245
RFC 7231Sat, 11 Apr 2026 16:53:55 GMT+12:45
RFC 822Sat, 11 Apr 26 16:53:55 +1245
RFC 850Saturday, 11-Apr-26 16:53:55 GMT+12:45
RSSSat, 11 Apr 2026 16:53:55 +1245
SQL2026-04-11 16:53:55.119 +12:45
SQL Time16:53:55.119 +12:45
UTC2026-04-11T04:08:55.119Z
Unix Epoch1775880535
W3C2026-04-11T16:53:55+12:45
dd-MM-yyyy HH:mm:ss11-04-2026 16:53:55
yyyy-dd-MM HH:mm:ss2026-11-04 16:53:55
yyyy-dd-MM hh:mm:ss a2026-11-04 04:53:55 PM

Пов’язані часові пояси

Таблиця зі списком часових поясів з однаковим часовим зсувом, включно з назвами та скороченнями часових поясів.

У таблиці є 2 часові пояси.
Часовий пояс IANA
Назва зсуву
Скорочення
NZ-CHATза стандартним часом на архіпелазі ЧатемGMT+12:45
Pacific/Chathamза стандартним часом на архіпелазі ЧатемGMT+12:45

Для розробників

php


<?php

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

// Solution 2
// Use this to get the current date and time in the specified time zone.
$timezone = new DateTimeZone('Pacific/Chatham');
// 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/Chatham")
# 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/Chatham"});
/* 
* Print the current date and time
*/
console.log(currentTime); // 1/1/2023, 12:00:00 AM