date_default_timezone_get()

The time zone of the server running the script can be collected by using date_default_timezone_get() function. Sample code
<?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.

Example: Getting the Server's Default Time Zone

$timezone = date_default_timezone_get();
echo "The server's default time zone is: " . $timezone;

Example: Setting and Retrieving Time Zone

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

These examples provide practical use cases for verifying and setting time zones.

Example: Listing All Available Time Zones

$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>';
}

Creating a dropdown list for user selection of Timezone
PHP Date Functions date_default_timezone_set() Set the time zone
Subhendu Mohapatra — author at plus2net
Subhendu Mohapatra

Author

🎥 Join me live on YouTube

Passionate 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.



Subscribe to our YouTube Channel here



plus2net.com











PHP video Tutorials
We use cookies to improve your browsing experience. . Learn more
HTML MySQL PHP JavaScript ASP Photoshop Articles Contact us
©2000-2025   plus2net.com   All rights reserved worldwide Privacy Policy Disclaimer