Solution: 1. In the php.ini file, set "date.timezone = "time zone identifier"" to convert the time zone; 2. In the php file, use "ini_set('date.timezone', 'Time zone identifier');" statement to convert the time zone; 3. Use the "date_default_timezone_set("time zone identifier");" statement in the php file to convert the time zone.
The operating environment of this tutorial: windows7 system, PHP8 version, DELL G3 computer
Time is essential in life, in PHP The same is true, time sometimes needs to be stored to record something or displayed in the browser.
The reason why php time zone is incorrect
In PHP, the date and time are obtained through date and time functions. The date and time functions depend on the server's time setting. The server's time setting defaults to Greenwich Time (zero time zone time). If the time is not specifically set to a specific time zone, then the time obtained through the relevant PHP functions will be the zero time zone time. It is 8 hours less than Beijing time.
Due to the rewriting of the data() function in PHP5.0, the current date and time function is 8 hours less than the system time. The default setting of the PHP language is standard Greenwich Time (that is, the zero time zone is used), so to obtain the current local time may be different from the local time, the time zone setting in the PHP language must be changed.
How to set the time zone in PHP
There are three ways to set the time zone in PHP. Let’s introduce each one below.
1) Set in the configuration file
The configuration file of PHP is the php.ini file in the PHP installation directory, find and open it. Then search for date.timezone
in the file,
replace the ;
in front of ;date.timezone =
with the / in PHP /
has the same function and means a comment. Here we need to remove this ;
and fill in the corresponding time zone identifier after the = in this sentence, as shown below:
[Date] ; Defines the default timezone used by the date functions ; http://php.net/date.timezone date.timezone = Asia/Shangha
Some commonly used time zone identifiers and their meanings:
Asia/Shanghai —— Shanghai
Asia/Chongqing —— Chongqing
Asia/Urumqi —— Urumqi
Asia/Hong_Kong —— Hong Kong
- ##Asia/Macao — — Macau
- Asia/Taipei — Taipei
- Asia/Singapore — Singapore
- PRC - China Time Zone
# Tip: If you are in China, we can set the time zone to "Asia/Shanghai or PRC". Remember to restart the server after the setting is successful!
2) Use the ini_set() function to set the time zone
The ini_set() function in PHP can set the value of the specified configuration option. This configuration option will be in The new value is maintained while the script is running and restored when the script ends. The syntax format of the function is as follows:ini_set($varname, $newvalue)where $varname is the configuration option to be modified, and $newvalue is the new value of the configuration option. Tips: The ini_set() function cannot modify all configuration options. You can view the configurations that can be modified by visiting "https://www.php.net/manual/zh/ini.list.php" options. [Example] Use the ini_set() function to set the time zone.
<?php header("Content-type:text/html;charset=utf-8"); ini_set('date.timezone', 'GMT'); echo '当前的格林尼治时间为:'.date('Y-m-d H:i:s',time()).'<br>'; ini_set('date.timezone', 'Asia/Urumqi'); echo '乌鲁木齐的当前时间为:'.date('Y-m-d H:i:s',time()).'<br>'; ini_set('date.timezone', 'Asia/Shanghai'); echo '上海的当前时间为:'.date('Y-m-d H:i:s',time()); ?>The running results are as follows:
3) Use the date_default_timezone_set() function to set the time zone
in PHP The date_default_timezone_set() function can set a default time zone for all time and date functions in the script. The syntax format is as follows:date_default_timezone_set($timezone_identifier)The parameter $timezone_identifier is the time zone identifier, such as UTC (Greenwich Mean Time) or Europe/Lisbon (Portugal) ). Since PHP5.1.0 (the date and time function has been rewritten in this version), if the time zone is illegal, each call to the date and time function will generate an E_NOTICE level error message. If you use the system setting or The TZ environment variable also generates E_STRICT level information. [Example] Use date_default_timezone_set() function to set the time zone.
<?php header("Content-type:text/html;charset=utf-8"); date_default_timezone_set('Asia/Urumqi'); echo '乌鲁木齐的当前时间为:'.date('Y-m-d H:i:s',time()).'<br>'; date_default_timezone_set('Europe/Lisbon'); echo '葡萄牙的当前时间为:'.date('Y-m-d H:i:s',time()).'<br>'; date_default_timezone_set('Asia/Shanghai'); echo '上海的当前时间为:'.date('Y-m-d H:i:s',time()); ?>The running results are as follows:
PHP Video Tutorial"
The above is the detailed content of How to solve the incorrect time zone in php. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version
Useful JavaScript development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
