Pacific/Gambier

Текущие местные дата и время в часовом поясе Pacific/Gambier.

UTC-09:00

Loading...
Loading...

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

Летнее времяНедоступно
Смещение-09:00
Часовой пояс IANAPacific/Gambier

Основная страна, использующая часовой пояс Pacific/Gambier, — 🇵🇫 Французская Полинезия.

Стандартное время Доступно

-09

UTC

Летнее время
Летнее время не используется

Стандарты формата даты и времени

Таблица показывает сравнение различных стандартов формата даты и времени. Каждая строка соответствует отдельному стандарту, например ATOM, COOKIE, ISO и RFC, а также другим.
Формат
Дата и время
ATOM2026-03-23T23:33:31.368-09:00
COOKIEMon, 23 Mar 2026 23:33:31 -0900
HTTPTue, 24 Mar 2026 08:33:31 GMT
ISO2026-03-23T23:33:31.368-09:00
ISO 86012026-03-23T23:33:31.368-09:00
MM-dd-yyyy HH:mm:ss03-23-2026 23:33:31
MongoDB2026-03-24T08:33:31.368Z
MySQL DATETIME2026-03-23 23:33:31
RFC 1036Mon, 23 Mar 26 23:33:31 -0900
RFC 1123Mon, 23 Mar 2026 23:33:31 -0900
RFC 2822Mon, 23 Mar 2026 23:33:31 -0900
RFC 33392026-03-23T23:33:31-0900
RFC 7231Mon, 23 Mar 2026 23:33:31 GMT-9
RFC 822Mon, 23 Mar 26 23:33:31 -0900
RFC 850Monday, 23-Mar-26 23:33:31 GMT-9
RSSMon, 23 Mar 2026 23:33:31 -0900
SQL2026-03-23 23:33:31.368 -09:00
SQL Time23:33:31.368 -09:00
UTC2026-03-24T08:33:31.368Z
Unix Epoch1774341211
W3C2026-03-23T23:33:31-09:00
dd-MM-yyyy HH:mm:ss23-03-2026 23:33:31
yyyy-dd-MM HH:mm:ss2026-23-03 23:33:31
yyyy-dd-MM hh:mm:ss a2026-23-03 11:33:31 PM

Связанные часовые пояса

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

В таблице указано 5 часовых поясов.
Часовой пояс IANA
Название смещения
Аббр.
America/AdakГавайско-алеутское летнее времяGMT-9
America/AtkaГавайско-алеутское летнее времяGMT-9
Etc/GMT+9GMT-09:00GMT-9
Pacific/GambierГамбьеGMT-9
US/AleutianГавайско-алеутское летнее времяGMT-9

Для разработчиков

php


<?php

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

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