Answers for "what is the timezone of the time from php date function"

PHP
1

php datetime set timezone

$date = new \DateTime();
$date->setTimezone(new \DateTimeZone('+0800')); //GMT
echo $date->format('Y-m-d H:i:s');
// 2020-11-20 15:23:49
Posted by: Guest on November-20-2020

Code answers related to "what is the timezone of the time from php date function"

Browse Popular Code Answers by Language