xxxxxxxxxx
// Set the desired time zone
$timeZone = new DateTimeZone('America/New_York');
// Create a DateTime object with the specified time zone
$dateTime = new DateTime('now', $timeZone);
// Get the current date and time in the desired time zone
$currentTime = $dateTime->format('Y-m-d H:i:s');
// Prints the current date and time in the specified time zone
echo $currentTime;
xxxxxxxxxx
$date = new \DateTime($his['DATE_TIME']);
$date->setTimezone(new \DateTimeZone('Asia/Karachi'));
echo $date->format('F j, Y, g:i a');
xxxxxxxxxx
$date = new \DateTime();
$date->setTimezone(new \DateTimeZone('+0800')); //GMT
echo $date->format('Y-m-d H:i:s');
// 2020-11-20 15:23:49
xxxxxxxxxx
<?php
date_default_timezone_set('America/New_York');
echo date('Y-m-d H:i:s'); // Example usage: displaying the current date and time
?>
xxxxxxxxxx
date_default_timezone_set("Asia/Karachi");
//if you wand your timezone in whole website than go to config/app.php
// and serch for timezone, now pass your time zone. in my case
'timezone' => 'Asia/Karachi',
//Go to following link to find your timezone
// https://www.php.net/manual/en/timezones.asia.php
xxxxxxxxxx
$timezone = new DateTimeZone('your_timezone_here');
$date = new DateTime(null, $timezone);