Home >Backend Development >PHP Problem >What should I do if the time zone setting in php is invalid?
Solution to invalid time zone setting in php: 1. Open the httpd.conf file; 2. Add the code "php_value date.timezone PRC" at the end of the file.
The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer
How to set the time zone invalidly in php manage?
[Development environment] The time zone setting in php.ini does not take effect
It still does not take effect even after configuring it in php.ini
At this time you need to open apache to set it up
Open httpd.conf and add the following codes at the end of the file
<IfModule mod_php7.c> php_value date.timezone PRC </IfModule>
Then look at PHP, the setting is successful
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of What should I do if the time zone setting in php is invalid?. For more information, please follow other related articles on the PHP Chinese website!