Quick actions

cmd+k|ctrl+k

Navigation

Languages

Automatic timezone for Turkey in 2018 in PHP

Snippet info

Language

Php

Visibility

public

Author

mertskaplan

Created

2018-01-27T17:49:43Z

Updated

2018-01-27T17:49:43Z

<?php

date_default_timezone_set('Etc/GMT-3'); // timezone according to Iğdır
setlocale(LC_TIME, 'tr_TR'); // for Turkish date
if (time() >= 1540699200) { // delete this if after 28.10.2018 04:00 and change the timezone
    date_default_timezone_set('Etc/GMT-2'); // timezone according to İstanbul
}
INFO