date_default_timezone_get
Gets the default timezone used by all date/time functions in a script
&reftitle.description;
stringdate_default_timezone_get
In order of preference, this function returns the default timezone by:
Reading the timezone set using the
date_default_timezone_set function (if any)
Prior to PHP 5.4.0 only: Reading the TZ
environment variable (if non empty)
Reading the value of the date.timezone ini option
(if set)
Prior to PHP 5.4.0 only: Querying the host operating system (if supported
and allowed by the OS). This uses an algorithm
that has to guess the timezone. This is by no means going to work correctly for
every situation. A warning is shown when this stage is reached. Do not rely on it to be guessed
correctly, and set date.timezone to the correct timezone
instead.
If none of the above succeed, date_default_timezone_get
will return a default timezone of UTC.
&reftitle.returnvalues;
Returns a string.
&reftitle.changelog;
&Version;&Description;5.4.0
The TZ environment variable is no longer used to
guess the timezone.
5.4.0
The timezone is no longer guessed from information available through the
operating system as the guessed timezone can not be relied on.
&reftitle.examples;
Getting the default timezone
';
}
if (ini_get('date.timezone')) {
echo 'date.timezone: ' . ini_get('date.timezone');
}
?>
]]>
&example.outputs.similar;
Getting the abbreviation of a timezone
' . date('e') . ' => ' . date('T');
?>
]]>
&example.outputs;
America/Los_Angeles => PST
]]>
&reftitle.seealso;
date_default_timezone_set