Answers for "php get current timezone"

PHP
6

php default timezone

date_default_timezone_set("Asia/Kolkata");
// List of Supported Timezones https://www.php.net/manual/en/timezones.php
Posted by: Guest on May-18-2020
1

php get timezone

echo date_default_timezone_get(); //UTC

//Read more at https://www.php.net/manual/en/function.date-default-timezone-get.php
Posted by: Guest on July-15-2020
1

how to get the list of available timezones in php

//To Get the list of timezones available in php
//use the static function listIdentifiers() on DateTimeZone class
$list = DateTimeZone::listIdentifiers();
print_r($list)
Posted by: Guest on April-25-2020

Code answers related to "php get current timezone"

Browse Popular Code Answers by Language