America/Anchorage

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

UTC-08:00

Loading...
Loading...

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

الإزاحة-08:00
التوقيت الصيفيمتاح
المنطقة الزمنية IANAAmerica/Anchorage

الدولة الأساسية التي تستخدم المنطقة الزمنية America/Anchorage هي 🇺🇸 الولايات المتحدة.

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

يوفر الجدول مقارنة جنبًا إلى جنب لمعايير تنسيق التاريخ والوقت المختلفة. يمثل كل صف معيار تنسيق فريد مثل ATOM وCOOKIE وISO وRFC وغيرها.
التنسيق
التاريخ والوقت
ATOM2026-08-06T13:49:04.013-08:00
COOKIEThu, 06 Aug 2026 13:49:04 -0800
HTTPThu, 06 Aug 2026 21:49:04 GMT
ISO2026-08-06T13:49:04.013-08:00
ISO 86012026-08-06T13:49:04.013-08:00
MM-dd-yyyy HH:mm:ss08-06-2026 13:49:04
MongoDB2026-08-06T21:49:04.013Z
MySQL DATETIME2026-08-06 13:49:04
RFC 1036Thu, 06 Aug 26 13:49:04 -0800
RFC 1123Thu, 06 Aug 2026 13:49:04 -0800
RFC 2822Thu, 06 Aug 2026 13:49:04 -0800
RFC 33392026-08-06T13:49:04-0800
RFC 7231Thu, 06 Aug 2026 13:49:04 AKDT
RFC 822Thu, 06 Aug 26 13:49:04 -0800
RFC 850Thursday, 06-Aug-26 13:49:04 AKDT
RSSThu, 06 Aug 2026 13:49:04 -0800
SQL2026-08-06 13:49:04.013 -08:00
SQL Time13:49:04.013 -08:00
UTC2026-08-06T21:49:04.013Z
Unix Epoch1786052944
W3C2026-08-06T13:49:04-08:00
dd-MM-yyyy HH:mm:ss06-08-2026 13:49:04
yyyy-dd-MM HH:mm:ss2026-06-08 13:49:04
yyyy-dd-MM hh:mm:ss a2026-06-08 01:49:04 PM

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

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

توجد 9 مناطق زمنية في الجدول.
المنطقة الزمنية IANA
اسم الإزاحة
الاختصار
America/Anchorageتوقيت ألاسكا الصيفيغرينتش-8
America/Juneauتوقيت ألاسكا الصيفيغرينتش-8
America/Metlakatlaتوقيت ألاسكا الصيفيغرينتش-8
America/Nomeتوقيت ألاسكا الصيفيغرينتش-8
America/Sitkaتوقيت ألاسكا الصيفيغرينتش-8
America/Yakutatتوقيت ألاسكا الصيفيغرينتش-8
Etc/GMT+8غرينتش-08:00غرينتش-8
Pacific/Pitcairnتوقيت بيتكيرنغرينتش-8
US/Alaskaتوقيت ألاسكا الصيفيغرينتش-8

للمطورين

php


<?php

// Solution 1
// Set the default time zone
date_default_timezone_set('America/Anchorage');

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