Answers for "php display date and time in ist timezone"

PHP
6

default time zone india php

date_default_timezone_set('Asia/Kolkata');
$timestamp = date("Y-m-d H:i:s");
Posted by: Guest on May-03-2020
2

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 display date and time in ist timezone"

Browse Popular Code Answers by Language