Solution to invalid php.ini time zone modification: 1. Find and open the httpd.conf file; 2. Add the "php_value date.timezone PRC" code at the end of the file.
The operating environment of this article: Windows 7 system, PHP version 7.1, DELL G3 computer
What to do if the time zone modification of php.ini is invalid ? [Development environment] The time zone setting in php.ini does not take effect?
The configuration in php.ini still does not take effect
At this time, you need to open apache to set up
Open httpd.conf 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 modification in php.ini is invalid?. For more information, please follow other related articles on the PHP Chinese website!