Africa/Bamako

Ora și data locală curente în fusul orar Africa/Bamako.

UTC+00:00

Loading...
Loading...

Profil de fus orar

Decalaj+00:00
Fus orar IANAAfrica/Bamako
Ora de varăIndisponibil

Țara principală care folosește fusul orar Africa/Bamako este 🇲🇱 Mali.

Ora standard Disponibil

UTC

Ora de vară
Ora de vară nu este aplicată

Standarde de format pentru dată și oră

Tabelul oferă o comparație alăturată a diferitelor standarde de format pentru dată și oră. Fiecare rând reprezintă un standard de format distinct, precum ATOM, COOKIE, ISO și RFC, printre altele.
Format
Data și ora
ATOM2026-04-13T04:45:18.863+00:00
COOKIEMon, 13 Apr 2026 04:45:18 +0000
HTTPMon, 13 Apr 2026 04:45:18 GMT
ISO2026-04-13T04:45:18.863+00:00
ISO 86012026-04-13T04:45:18.863+00:00
MM-dd-yyyy HH:mm:ss04-13-2026 04:45:18
MongoDB2026-04-13T04:45:18.863Z
MySQL DATETIME2026-04-13 04:45:18
RFC 1036Mon, 13 Apr 26 04:45:18 +0000
RFC 1123Mon, 13 Apr 2026 04:45:18 +0000
RFC 2822Mon, 13 Apr 2026 04:45:18 +0000
RFC 33392026-04-13T04:45:18+0000
RFC 7231Mon, 13 Apr 2026 04:45:18 GMT
RFC 822Mon, 13 Apr 26 04:45:18 +0000
RFC 850Monday, 13-Apr-26 04:45:18 GMT
RSSMon, 13 Apr 2026 04:45:18 +0000
SQL2026-04-13 04:45:18.863 +00:00
SQL Time04:45:18.863 +00:00
UTC2026-04-13T04:45:18.863Z
Unix Epoch1776055518
W3C2026-04-13T04:45:18+00:00
dd-MM-yyyy HH:mm:ss13-04-2026 04:45:18
yyyy-dd-MM HH:mm:ss2026-13-04 04:45:18
yyyy-dd-MM hh:mm:ss a2026-13-04 04:45:18 AM

Fusuri orare asociate

Un tabel cu o listă de fusuri orare care au același decalaj. Include denumirea și abrevierile fusului orar.

Sunt 37 de fusuri orare în tabel.
Fus orar IANA
Denumire decalaj
Abbr
Africa/AbidjanOra de GreenwhichGMT
Africa/AccraOra de GreenwhichGMT
Africa/BamakoOra de GreenwhichGMT
Africa/BanjulOra de GreenwhichGMT
Africa/BissauOra de GreenwhichGMT
Africa/ConakryOra de GreenwhichGMT
Africa/DakarOra de GreenwhichGMT
Africa/FreetownOra de GreenwhichGMT
Africa/LomeOra de GreenwhichGMT
Africa/MonroviaOra de GreenwhichGMT
Africa/NouakchottOra de GreenwhichGMT
Africa/OuagadougouOra de GreenwhichGMT
Africa/Sao_TomeOra de GreenwhichGMT
Africa/TimbuktuOra de GreenwhichGMT
America/DanmarkshavnOra de GreenwhichGMT
Atlantic/AzoresOra de vară din AzoreGMT
Atlantic/ReykjavikOra de GreenwhichGMT
Atlantic/St_HelenaOra de GreenwhichGMT
Etc/GMTTimpul universal coordonatUTC
Etc/GMT+0Ora de GreenwhichGMT
Etc/GMT-0Ora de GreenwhichGMT
Etc/GMT0Ora de GreenwhichGMT
Etc/GreenwichOra de GreenwhichGMT
Etc/UCTTimpul universal coordonatUTC
Etc/UTCTimpul universal coordonatUTC
Etc/UniversalTimpul universal coordonatUTC
Etc/ZuluTimpul universal coordonatUTC
GMTUTCUTC
GMT+0Timpul universal coordonatUTC
GMT-0Timpul universal coordonatUTC
GMT0Timpul universal coordonatUTC
GreenwichOra de GreenwhichGMT
IcelandOra de GreenwhichGMT
UCTTimpul universal coordonatUTC
UTCUTCUTC
UniversalTimpul universal coordonatUTC
ZuluTimpul universal coordonatUTC

Pentru dezvoltatori

php


<?php

// Solution 1
// Set the default time zone
date_default_timezone_set('Africa/Bamako');

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