php mendeteksi waktu penghematan siang hari dst

if (date('I', time())) {
    echo 'We are in DST!';
} else {
    echo 'We are not in DST!';
}
Half Unicorn, Half Potato