Using now() in different time zones (or with daylight saving time)
조회 수: 5 (최근 30일)
이전 댓글 표시
If two people in two different time zones simultaneously used the now() function, would they get different answers? Also, does the now() result depend on whether daylight saving time is in use?
I understand now() returns the number of days since 0 Jan 0000, but does that mean "0 Jan 0000 UTC", or "0 Jan 0000 in the local time zone"?
Many thanks,
Neil
댓글 수: 2
채택된 답변
Steven Lord
2019년 12월 6일
If you want control over the time zone, you probably want to use datetime instead of now.
N1 = datetime('now', 'TimeZone', 'local')
N2 = datetime('now', 'TimeZone', 'America/New_York')
N3 = datetime('now', 'TimeZone', 'Europe/London')
See this documentation page for more information about working with dates and times with time zones. If you want to know if a datetime occurs during Daylight Savings Time, use isdst. When called on datetime arrays without a time zone set, isdst return false.
댓글 수: 3
Steven Lord
2019년 12월 6일
The timezones function output for the "Etc" Area shows that Etc/UTC has 0 UTCOffset and 0 DSTOffset, so I think you're fine.
t = timezones('Etc')
추가 답변 (1개)
Jeremy
2019년 12월 6일
now
Limitations
- MATLAB Online returns the current date and time in Coordinated Universal Time (UTC) rather than local time.
댓글 수: 1
Jeremy
2019년 12월 6일
Additionally, you can use the syntax
[c tf] = clock
Where tf will be a logical that is 1 (true) if the current local date and time occur during Daylight Saving Time in your current time zone, and 0 (false) otherwise.
참고 항목
카테고리
Help Center 및 File Exchange에서 Time Series Objects에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!