Answers for "how to change date time zone on php.ini"

PHP
8

php change timezone

date_default_timezone_set('America/Los_Angeles');
Posted by: Guest on March-20-2020
0

PHP DateTime Format date time according to a time zone

$date = new \DateTime($his['DATE_TIME']);
															$date->setTimezone(new \DateTimeZone('Asia/Karachi')); 
															echo $date->format('F j, Y, g:i a');
Posted by: Guest on December-20-2021

Browse Popular Code Answers by Language