Pacific/Efate

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

UTC+11:00

Loading...
Loading...

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

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

Основная страна, использующая часовой пояс Pacific/Efate, — 🇻🇺 Вануату.

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

+11

UTC

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

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

Таблица показывает сравнение различных стандартов формата даты и времени. Каждая строка соответствует отдельному стандарту, например ATOM, COOKIE, ISO и RFC, а также другим.
Формат
Дата и время
ATOM2026-04-12T17:05:20.848+11:00
COOKIESun, 12 Apr 2026 17:05:20 +1100
HTTPSun, 12 Apr 2026 06:05:20 GMT
ISO2026-04-12T17:05:20.848+11:00
ISO 86012026-04-12T17:05:20.848+11:00
MM-dd-yyyy HH:mm:ss04-12-2026 17:05:20
MongoDB2026-04-12T06:05:20.848Z
MySQL DATETIME2026-04-12 17:05:20
RFC 1036Sun, 12 Apr 26 17:05:20 +1100
RFC 1123Sun, 12 Apr 2026 17:05:20 +1100
RFC 2822Sun, 12 Apr 2026 17:05:20 +1100
RFC 33392026-04-12T17:05:20+1100
RFC 7231Sun, 12 Apr 2026 17:05:20 GMT+11
RFC 822Sun, 12 Apr 26 17:05:20 +1100
RFC 850Sunday, 12-Apr-26 17:05:20 GMT+11
RSSSun, 12 Apr 2026 17:05:20 +1100
SQL2026-04-12 17:05:20.848 +11:00
SQL Time17:05:20.848 +11:00
UTC2026-04-12T06:05:20.848Z
Unix Epoch1775973920
W3C2026-04-12T17:05:20+11:00
dd-MM-yyyy HH:mm:ss12-04-2026 17:05:20
yyyy-dd-MM HH:mm:ss2026-12-04 17:05:20
yyyy-dd-MM hh:mm:ss a2026-12-04 05:05:20 PM

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

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

В таблице указано 12 часовых поясов.
Часовой пояс IANA
Название смещения
Аббр.
Asia/MagadanМагадан, стандартное времяGMT+11
Asia/SakhalinСахалин, стандартное времяGMT+11
Asia/SrednekolymskGMT+11:00GMT+11
Etc/GMT-11GMT+11:00GMT+11
Pacific/BougainvilleGMT+11:00GMT+11
Pacific/EfateВануату, стандартное времяGMT+11
Pacific/GuadalcanalСоломоновы ОстроваGMT+11
Pacific/KosraeКосраеGMT+11
Pacific/NorfolkНорфолк, стандартное времяGMT+11
Pacific/NoumeaНовая Каледония, стандартное времяGMT+11
Pacific/PohnpeiПонпеиGMT+11
Pacific/PonapeПонпеиGMT+11

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

php


<?php

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

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