Home > Article > Backend Development > How to solve the problem of inaccurate PHP time?
How to solve the problem of inaccurate PHP time?
1. Open the php.ini file, find ";date.timezone", delete the preceding semicolon, and change the value to RPC;
2. Add "date_default_timezone_set(RPC)" at the beginning of the code, which means to set the current time zone.
date_default_timezone_set("RPC");
Recommended tutorial: "PHP"
The above is the detailed content of How to solve the problem of inaccurate PHP time?. For more information, please follow other related articles on the PHP Chinese website!