Answers for "php detect daylight saving time DST"

PHP
0

php detect daylight saving time DST

if (date('I', time())) {
    echo 'We are in DST!';
} else {
    echo 'We are not in DST!';
}
Posted by: Guest on March-30-2022

Browse Popular Code Answers by Language