Home > Article > Backend Development > How to set time zone in php5.4
How to set the time zone in php5.4: 1. Find and open the php.ini file; 2. Find the content of "date.timezone"; 3. Remove the previous semicolon and change it to "date.timezone = PRC" That’s it.
#The operating environment of this article: Windows 7 system, php version 5.4, Dell G3 computer.
How to set the time zone in php5.4?
PHP5.4 Set time zone:
Open php.ini
Find date.timezone
Remove the preceding semicolon and change it to: date.timezone = PRC
Related introduction:
PHP (PHP: Hypertext Preprocessor), the "Hypertext Preprocessor", is a scripting language executed on the server side. It is especially suitable for Web development and can be embedded in HTML. PHP syntax learned the C language, absorbed the characteristics of multiple languages of Java and Perl to develop its own unique syntax, and continued to improve itself based on their strengths, such as Java's object-oriented programming. The main goal of the language was originally created to make Developers quickly write high-quality web sites. PHP supports both object-oriented and process-oriented development, and is very flexible in use.
After more than 20 years of development, with the rapid development and improvement of php-cli related components, PHP can already be applied in TCP/UDP services, high-performance Web, WebSocket services, Internet of Things, real-time communication, System development in non-Web fields such as games and microservices.
According to statistics released by W3Techs on December 6, 2019, PHP’s share of programming languages used on the WEB website server is as high as 78.9% [23] . Among websites with content management systems, 58.7% use WordPress (CMS system developed by PHP), which accounts for 25.0% of all websites.
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to set time zone in php5.4. For more information, please follow other related articles on the PHP Chinese website!