1echo date_default_timezone_get(); //UTC
2
3//Read more at https://www.php.net/manual/en/function.date-default-timezone-get.php
1//To Get the list of timezones available in php
2//use the static function listIdentifiers() on DateTimeZone class
3$list = DateTimeZone::listIdentifiers();
4print_r($list)