<?Php
echo date_default_timezone_get();
?>
If your error reporting is on then you will warning message saying
date_default_timezone_get(): It is not safe to rely on the system's timezone settings.
You are *required* to use the date.timezone setting or the date_default_timezone_set() function.
In case you used any of those methods and you are still getting this warning,
you most likely misspelled the timezone identifier.
So it is always better to set your own timezone by using date_default_timezone_set() function before using any date functions in your script.
$timezone = date_default_timezone_get();
echo "The server's default time zone is: " . $timezone;
date_default_timezone_set('Asia/Kolkata');
echo "Current time zone is: " . date_default_timezone_get();
Output
Current time zone is: Asia/Kolkata
List of Supported Timezones at php.net $timezones = timezone_identifiers_list();
print_r($timezones);
Or to display as list
$timezones = timezone_identifiers_list();
foreach($timezones as $key=>$value){
echo "$key : $value".'<br>';
}
Author & Instructor at plus2net
I write and maintain practical tutorials on Python, PHP, SQL, JavaScript, HTML, jQuery, and web development at plus2net. The tutorials focus on clear explanations, working examples, and code that readers can test and adapt while learning.