Home > Backend Development > PHP Problem > Solution to the wrong time obtained by php

Solution to the wrong time obtained by php

藏色散人
Release: 2023-03-07 14:48:01
Original
2883 people have browsed it

Solution to php getting the wrong time: First open the "php.ini" file; then look for the "date.timezone" item; finally modify it to "date.timezone = "PRC"" and save it .

Solution to the wrong time obtained by php

Recommended: "PHP Video Tutorial"

PHP date() gets the system time incorrectly:

Using PHP to obtain the system time, I found that the time was wrong because the default time zone of PHP is UTC, and its time zone should be set to Beijing time.

Method 1: Modify the php.ini file

Open the php.ini file: left-click the WampServer icon in the lower right corner - PHP - php.ini,

Search for date.timezone, find date.timezone="UTC",

Change it to date.timezone="PRC", if there is a semicolon on the left side of date.timezone, remove the semicolon.

<span class="cur_time"><?php echo "当前时间:" . date("Y-m-d H:i:s") ?></span>
Copy after login

Method 2: Use date_default_timezone_set(”) method;

<?php
date_default_timezone_set(&#39;PRC&#39;); 
echo date("Y-m-d H:i:s");
?>
Copy after login

The above is the detailed content of Solution to the wrong time obtained by php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template