Я не совсем уверен, что вы спрашиваете.Я думаю , что вам нужно выяснить, является ли конкретная дата летним днем или нет.Если это так, вы можете использовать date('I')
.
$dst_now = date('I'); // whether our current timezone is currently in DST
$dst_then = date('I', strtotime($date)); // whether that date is in DST for our current timezone
$date_obj = new DateTime($date, new DateTimeZone('Europe/Paris'));
$dst_thereandthen = $date_obj->format('I');
// whether that date is in DST for that timezone
Если вам не нужен ни один из них, уточните, что вам нужно ...