Indian/Mauritius

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

UTC+04:00

Loading...
Loading...

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

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

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

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

+04

UTC

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

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

يوفر الجدول مقارنة جنبًا إلى جنب لمعايير تنسيق التاريخ والوقت المختلفة. يمثل كل صف معيار تنسيق فريد مثل ATOM وCOOKIE وISO وRFC وغيرها.
التنسيق
التاريخ والوقت
ATOM2026-06-25T12:01:26.354+04:00
COOKIEThu, 25 Jun 2026 12:01:26 +0400
HTTPThu, 25 Jun 2026 08:01:26 GMT
ISO2026-06-25T12:01:26.354+04:00
ISO 86012026-06-25T12:01:26.354+04:00
MM-dd-yyyy HH:mm:ss06-25-2026 12:01:26
MongoDB2026-06-25T08:01:26.354Z
MySQL DATETIME2026-06-25 12:01:26
RFC 1036Thu, 25 Jun 26 12:01:26 +0400
RFC 1123Thu, 25 Jun 2026 12:01:26 +0400
RFC 2822Thu, 25 Jun 2026 12:01:26 +0400
RFC 33392026-06-25T12:01:26+0400
RFC 7231Thu, 25 Jun 2026 12:01:26 GMT+4
RFC 822Thu, 25 Jun 26 12:01:26 +0400
RFC 850Thursday, 25-Jun-26 12:01:26 GMT+4
RSSThu, 25 Jun 2026 12:01:26 +0400
SQL2026-06-25 12:01:26.354 +04:00
SQL Time12:01:26.354 +04:00
UTC2026-06-25T08:01:26.354Z
Unix Epoch1782374486
W3C2026-06-25T12:01:26+04:00
dd-MM-yyyy HH:mm:ss25-06-2026 12:01:26
yyyy-dd-MM HH:mm:ss2026-25-06 12:01:26
yyyy-dd-MM hh:mm:ss a2026-25-06 12:01:26 PM

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

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

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