Home > Article > Web Front-end > How to Display Dates and Times in User's Locale Format while Maintaining a UTC Timestamp on the Server?
Display Date/Time in User's Locale Format and Time Offset
Question:
How can I display dates and times in the user's locale format and time offset while maintaining a UTC timestamp on the server?
Answer:
To achieve this functionality:
1. Set Date to UTC:
Create a new Date object and use the setUTC... methods to initialize it with the desired UTC date and time. For example:
d = new Date(); d.setUTCFullYear(2004); d.setUTCMonth(1); d.setUTCDate(29); d.setUTCHours(2); d.setUTCMinutes(45); d.setUTCSeconds(26);
2. Convert to Locale Format:
Use the built-in toLocaleString(), toLocaleDateString(), and toLocaleTimeString() methods to format the date according to the user's locale:
console.log(d.toLocaleString()); // -> Sat Feb 28 23:45:26 2004 console.log(d.toLocaleDateString()); // -> 02/28/2004 console.log(d.toLocaleTimeString()); // -> 23:45:26
In this example:
Using this approach ensures that the server always serves dates in UTC, while JavaScript on the client side converts them to the user's locale and time offset, providing a localized and user-friendly experience.
The above is the detailed content of How to Display Dates and Times in User's Locale Format while Maintaining a UTC Timestamp on the Server?. For more information, please follow other related articles on the PHP Chinese website!