|
2 answers
If you are interested in the time zone specified in the time settings on the server, then everything is there - See the time zone section, key "O"
And you can find out where he is from the admin :)
|
<?php //Установка date_default_timezone_set('Europe/London'); //Считывания вариант 1 if (date_default_timezone_get()) { echo 'date_default_timezone_set: ' . date_default_timezone_get() . '<br />'; } //Считывания вариант 2 if (ini_get('date.timezone')) { echo 'date.timezone: ' . ini_get('date.timezone'); } |