Pacific/Apia

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

UTC+13:00

Loading...
Loading...

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

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

Основною країною, яка використовує часовий пояс Pacific/Apia, є 🇼🇸 Самоа.

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

+13

UTC

Перехід на літній час
Перехід на літній час не застосовується

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

Таблиця надає порівняння різних стандартів форматування дати й часу. Кожен рядок представляє окремий стандарт формату, такий як ATOM, COOKIE, ISO, RFC та інші.
Формат
Дата і час
ATOM2026-04-07T01:31:00.494+13:00
COOKIETue, 07 Apr 2026 01:31:00 +1300
HTTPMon, 06 Apr 2026 12:31:00 GMT
ISO2026-04-07T01:31:00.494+13:00
ISO 86012026-04-07T01:31:00.494+13:00
MM-dd-yyyy HH:mm:ss04-07-2026 01:31:00
MongoDB2026-04-06T12:31:00.494Z
MySQL DATETIME2026-04-07 01:31:00
RFC 1036Tue, 07 Apr 26 01:31:00 +1300
RFC 1123Tue, 07 Apr 2026 01:31:00 +1300
RFC 2822Tue, 07 Apr 2026 01:31:00 +1300
RFC 33392026-04-07T01:31:00+1300
RFC 7231Tue, 07 Apr 2026 01:31:00 GMT+13
RFC 822Tue, 07 Apr 26 01:31:00 +1300
RFC 850Tuesday, 07-Apr-26 01:31:00 GMT+13
RSSTue, 07 Apr 2026 01:31:00 +1300
SQL2026-04-07 01:31:00.494 +13:00
SQL Time01:31:00.494 +13:00
UTC2026-04-06T12:31:00.494Z
Unix Epoch1775478660
W3C2026-04-07T01:31:00+13:00
dd-MM-yyyy HH:mm:ss07-04-2026 01:31:00
yyyy-dd-MM HH:mm:ss2026-07-04 01:31:00
yyyy-dd-MM hh:mm:ss a2026-07-04 01:31:00 AM

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

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

У таблиці є 6 часових поясів.
Часовий пояс IANA
Назва зсуву
Скорочення
Etc/GMT-13GMT+13:00GMT+13
Pacific/Apiaза стандартним часом в АпіаGMT+13
Pacific/Enderburyза часом на островах ФеніксGMT+13
Pacific/Fakaofoза часом на островах ТокелауGMT+13
Pacific/Kantonза часом на островах ФеніксGMT+13
Pacific/Tongatapuза стандартним часом на островах ТонгаGMT+13

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

php


<?php

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

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