Answers for "php detect daylight saving time"

PHP
0

php detect daylight saving time

date_default_timezone_set('Europe/London');
$bool = date('I'); // this will be 1 in DST or else 0
Posted by: Guest on March-30-2022

Browse Popular Code Answers by Language