<?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
🎥 Join me live on YouTubePassionate about coding and teaching, I publish practical tutorials on PHP, Python, JavaScript, SQL, and web development. My goal is to make learning simple, engaging, and project‑oriented with real examples and source code.