Indian/Mauritius

الوقت المحلي الحالي والتاريخ في المنطقة الزمنية Indian/Mauritius.

UTC+04:00

Loading...
Loading...

ملف تعريف المنطقة الزمنية

الإزاحة+04:00
التوقيت الصيفيغير متاح
المنطقة الزمنية IANAIndian/Mauritius

الدولة الأساسية التي تستخدم المنطقة الزمنية Indian/Mauritius هي 🇲🇺 موريشيوس.

التوقيت القياسي متاح

+04

UTC

التوقيت الصيفي
لا يتم اعتماد التوقيت الصيفي

معايير تنسيق التاريخ والوقت

يوفر الجدول مقارنة جنبًا إلى جنب لمعايير تنسيق التاريخ والوقت المختلفة. يمثل كل صف معيار تنسيق فريد مثل ATOM وCOOKIE وISO وRFC وغيرها.
التنسيق
التاريخ والوقت
ATOM2026-08-09T19:25:45.284+04:00
COOKIESun, 09 Aug 2026 19:25:45 +0400
HTTPSun, 09 Aug 2026 15:25:45 GMT
ISO2026-08-09T19:25:45.284+04:00
ISO 86012026-08-09T19:25:45.284+04:00
MM-dd-yyyy HH:mm:ss08-09-2026 19:25:45
MongoDB2026-08-09T15:25:45.284Z
MySQL DATETIME2026-08-09 19:25:45
RFC 1036Sun, 09 Aug 26 19:25:45 +0400
RFC 1123Sun, 09 Aug 2026 19:25:45 +0400
RFC 2822Sun, 09 Aug 2026 19:25:45 +0400
RFC 33392026-08-09T19:25:45+0400
RFC 7231Sun, 09 Aug 2026 19:25:45 GMT+4
RFC 822Sun, 09 Aug 26 19:25:45 +0400
RFC 850Sunday, 09-Aug-26 19:25:45 GMT+4
RSSSun, 09 Aug 2026 19:25:45 +0400
SQL2026-08-09 19:25:45.284 +04:00
SQL Time19:25:45.284 +04:00
UTC2026-08-09T15:25:45.284Z
Unix Epoch1786289145
W3C2026-08-09T19:25:45+04:00
dd-MM-yyyy HH:mm:ss09-08-2026 19:25:45
yyyy-dd-MM HH:mm:ss2026-09-08 19:25:45
yyyy-dd-MM hh:mm:ss a2026-09-08 07:25:45 PM

مناطق زمنية ذات صلة

جدول يحتوي على قائمة بالمناطق الزمنية التي لها نفس إزاحة الوقت، بما في ذلك الاسم واختصارات المنطقة الزمنية.

توجد 13 منطقة زمنية في الجدول.
المنطقة الزمنية IANA
اسم الإزاحة
الاختصار
Asia/Bakuتوقيت أذربيجان الرسميغرينتش+4
Asia/Dubaiتوقيت الخليجغرينتش+4
Asia/Muscatتوقيت الخليجغرينتش+4
Asia/Tbilisiتوقيت جورجيا الرسميغرينتش+4
Asia/Yerevanتوقيت أرمينيا الرسميغرينتش+4
Etc/GMT-4غرينتش+04:00غرينتش+4
Europe/Astrakhanتوقيت سماراغرينتش+4
Europe/Samaraتوقيت سماراغرينتش+4
Europe/Saratovتوقيت سماراغرينتش+4
Europe/Ulyanovskتوقيت سماراغرينتش+4
Indian/Maheتوقيت سيشلغرينتش+4
Indian/Mauritiusتوقيت موريشيوس الرسميغرينتش+4
Indian/Reunionتوقيت روينيونغرينتش+4

للمطورين

php


<?php

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

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