timezone_offset_get timestamp code example
Example 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');
?>
Example 2: php get timezone
echo date_default_timezone_get(); //UTC
//Read more at https://www.php.net/manual/en/function.date-default-timezone-get.php