Answers for "global php setting to store date and time with indian timezone"

PHP
1

date_default_timezone_set for india in php

<?php
	date_default_timezone_set("Asia/Kolkata");   //India time (GMT+5:30)
	echo date('d-m-Y H:i:s');
?>
Posted by: Guest on June-18-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 "global php setting to store date and time with indian timezone"

Browse Popular Code Answers by Language