"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Retrieve UTC Time Stamps in PHP?

How to Retrieve UTC Time Stamps in PHP?

Published on 2024-11-07
Browse:917

How to Retrieve UTC Time Stamps in PHP?

How to Retrieve UTC Time Stamps in PHP

Getting the current time stamp in PHP is straightforward using the date() function. However, by default, date() returns timestamps based on the server's time zone. To obtain timestamps in Coordinated Universal Time (UTC), we need to utilize a different approach.

Solution: Using gmdate()

To retrieve timestamps in UTC, we can use the gmdate() function in PHP. gmdate() works similarly to date() but always returns timestamps in UTC regardless of the server's time zone. The syntax is identical to date(), allowing you to format the timestamp as needed.

Example:

$utcTimestamp = gmdate("Y-m-d H:i:s");
echo "UTC Timestamp: $utcTimestamp";

This will display the current timestamp in UTC format. Additionally, we can append the time zone offset to the timestamp using the gmstrftime() function.

Example:

$timeZoneOffset = gmstrftime("%z");
$utcTimestampWithOffset = gmdate("Y-m-d H:i:s") . " GMT/UTC" . $timeZoneOffset;
echo "UTC Timestamp with Offset: $utcTimestampWithOffset";

This will output the UTC timestamp with the appropriate time zone offset, such as "2023-03-08 14:30:00 GMT/UTC 0800" if the server's time zone is 8 hours ahead of UTC.

Release Statement This article is reprinted at: 1729375337 If there is any infringement, please contact [email protected] to delete it
Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3