Version: v0.7.1 - Beta.  We welcome contributors & feedback.

Date.isDst

$date.isDst() -> boolean

Description

Return true if the Date object falls within Daylight Savings Time for its timezone.

For UTC, this will always return false.

$date = Date.create('2022-05-01 15:00:00')
$date.setTimezone('Europe/Helsinki')

$date.isDst()
//= true

See Also