In this article, you will be learning how to use the date_default_timezone_get() PHP function to get the default timezone being used by all the Date and Time functions in the script.
What is the syntax of the date_default_timezone_get() function in PHP?
date_default_timezone_get()
Example of the date_default_timezone_get() function
Example 1. In the following example, we get the default timezone.
<?php
echo date_default_timezone_get();
?>