Pacific/Chatham

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

UTC+12:45

Loading...
Loading...

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

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

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

Літній час

+1345

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

+1245

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

Таблиця надає порівняння різних стандартів форматування дати та часу поруч. Кожен рядок представляє унікальний стандарт формату, такий як ATOM, COOKIE, ISO та RFC серед інших.
Формат
Дата та час
ATOM2025-07-06T06:29:25.016+12:45
COOKIESun, 06 Jul 2025 06:29:25 +1245
HTTPSat, 05 Jul 2025 17:44:25 GMT
ISO2025-07-06T06:29:25.016+12:45
ISO 86012025-07-06T06:29:25.016+12:45
MM-dd-yyyy HH:mm:ss07-06-2025 06:29:25
MongoDB2025-07-05T17:44:25.016Z
MySQL DATETIME2025-07-06 06:29:25
RFC 1036Sun, 06 Jul 25 06:29:25 +1245
RFC 1123Sun, 06 Jul 2025 06:29:25 +1245
RFC 2822Sun, 06 Jul 2025 06:29:25 +1245
RFC 33392025-07-06T06:29:25+1245
RFC 7231Sun, 06 Jul 2025 06:29:25 GMT+12:45
RFC 822Sun, 06 Jul 25 06:29:25 +1245
RFC 850Sunday, 06-Jul-25 06:29:25 GMT+12:45
RSSSun, 06 Jul 2025 06:29:25 +1245
SQL2025-07-06 06:29:25.016 +12:45
SQL Time06:29:25.016 +12:45
UTC2025-07-05T17:44:25.016Z
Unix Epoch1751737465
W3C2025-07-06T06:29:25+12:45
dd-MM-yyyy HH:mm:ss06-07-2025 06:29:25
yyyy-dd-MM HH:mm:ss2025-06-07 06:29:25
yyyy-dd-MM hh:mm:ss a2025-06-07 06:29:25 AM

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

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

В таблиці декілька часових поясів.
Часовий пояс 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