Bạn có thể sử dụng DateTimeZone
lớp:
$gmt = new DateTimeZone("GMT");
$datetimeInGMT = new DateTime($now, $gmt);
Nó cũng có các vị trí ở dạng continent/city
, ví dụ. Europe/London
.
Nếu ngày giờ của bạn không phải UTC, bạn có thể sử dụng setTimezone
:
$datetimeInGMT = new DateTime($now, new DateTimeZone("America/New_York"));
$datetimeInGMT->setTimezone(new DateTimeZone("GMT"));