Indian/Mahe

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

UTC+04:00

Loading...
Loading...

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

Зсув+04:00
Літній часНе доступно
Часовий пояс IANAIndian/Mahe

Основною країною, яка використовує часовий пояс Indian/Mahe, є 🇸🇨 Сейшельські Острови.

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

+04

UTC

Літній час
Літній час не застосовується

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

Таблиця надає порівняння різних стандартів форматування дати та часу поруч. Кожен рядок представляє унікальний стандарт формату, такий як ATOM, COOKIE, ISO та RFC серед інших.
Формат
Дата та час
ATOM2025-01-29T03:32:00.050+04:00
COOKIEWed, 29 Jan 2025 03:32:00 +0400
HTTPTue, 28 Jan 2025 23:32:00 GMT
ISO2025-01-29T03:32:00.050+04:00
ISO 86012025-01-29T03:32:00.050+04:00
MM-dd-yyyy HH:mm:ss01-29-2025 03:32:00
MongoDB2025-01-28T23:32:00.050Z
MySQL DATETIME2025-01-29 03:32:00
RFC 1036Wed, 29 Jan 25 03:32:00 +0400
RFC 1123Wed, 29 Jan 2025 03:32:00 +0400
RFC 2822Wed, 29 Jan 2025 03:32:00 +0400
RFC 33392025-01-29T03:32:00+0400
RFC 7231Wed, 29 Jan 2025 03:32:00 GMT+4
RFC 822Wed, 29 Jan 25 03:32:00 +0400
RFC 850Wednesday, 29-Jan-25 03:32:00 GMT+4
RSSWed, 29 Jan 2025 03:32:00 +0400
SQL2025-01-29 03:32:00.050 +04:00
SQL Time03:32:00.050 +04:00
UTC2025-01-28T23:32:00.050Z
Unix Epoch1738107120
W3C2025-01-29T03:32:00+04:00
dd-MM-yyyy HH:mm:ss29-01-2025 03:32:00
yyyy-dd-MM HH:mm:ss2025-29-01 03:32:00
yyyy-dd-MM hh:mm:ss a2025-29-01 03:32:00 AM

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

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

В таблиці 13 часових поясів.
Часовий пояс IANA
Назва зсуву
Абр
Asia/Bakuза стандартним азербайджанським часомGMT+4
Asia/Dubaiза часом Перської затокиGMT+4
Asia/Muscatза часом Перської затокиGMT+4
Asia/Tbilisiза стандартним грузинським часомGMT+4
Asia/Yerevanза вірменським стандартним часомGMT+4
Etc/GMT-4GMT+04:00GMT+4
Europe/AstrakhanGMT+04:00GMT+4
Europe/Samaraза самарським стандартним часомGMT+4
Europe/SaratovGMT+04:00GMT+4
Europe/UlyanovskGMT+04:00GMT+4
Indian/Maheза часом на Сейшельських ОстровахGMT+4
Indian/Mauritiusза стандартним часом на острові МаврикійGMT+4
Indian/Reunionза часом на острові РеюньйонGMT+4

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

php


<?php

// Solution 1
// Set the default time zone
date_default_timezone_set('Indian/Mahe');

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