


The difference between date and gmdate in PHP and the default time zone setting_PHP tutorial
1. What is the difference between date and gmdate?
There are two formatting functions in the PHP time function: date() and gmdate(). The description in the official document is:
gmdate() #— Format a GMT/UTC date/time, return Green U.K. Standard Time (GMT).
Let’s take an example first. Our current time zone is +8, so the time returned by the server running the following script should be like this:
The current time is assumed to be 2013-03-14 12:15: 27
echo gmdate('Y-m-d H:i:s'); #With gmdate('Y-m-d H: i:s' time());The output is: 2007-03-14 04:15:27
But this is only the result of running PHP under Linux+Apache. If it is run under Windows, then 2 Each function returns: 2013-03-14 04:15:27.
So, we should give a compatible writing method, use gmdate uniformly, and manually set the current time zone. The writing method is improved as follows:
This way, the correct result is obtained whether under Linux+Apache or Windows , of course, there is another advantage to writing like this. When the website is open to the whole world, then the website user only needs to set the time zone, and the program automatically calculates the time based on the time zone set by the user. Only the current time() is stored in the database for the information release time. The generated time, then the release time seen by users in China +8 time zone is: 2007-03-14 12:15:27, then the release time seen by users in Europe +2 time zone is: 2007-03-14 06:15:27, so that all the times of the information correspond correctly.
2. Will changing the default time zone of PHP affect it?
Each region has its own local time. On the Internet and in radio communications, the problem of time conversion is particularly prominent. The entire earth is divided into twenty-four time zones, each with its own local time. In international radio or network communication situations, for the sake of unification, a unified time is used, called Universal Time Coordinated (UTC), which is a global standard time set by the world time standard. UTC was originally also known as Greenwich Mean Time (GMT, Greenwich Mean Time), which is the same as the local time in London, UK.
The default time zone setting of PHP is UTC time, and Beijing is located in the East Eighth District of the time zone, eight hours ahead of UTC. Therefore, when using functions such as time() in PHP to obtain the current time, the time obtained is always wrong, showing that it is eight hours different from Beijing time. If you want to display Beijing time correctly, you need to modify the default time zone settings, which can be done in the following two ways.
If you are using an independent server and have permission to modify the configuration file, setting the time zone can be completed by modifying the date.timezone attribute in php.ini. We can set the value of this attribute to one of "Asia/Shang", "Asia/Chongqing", "Etc/GMT-8" or PRC, etc., and then the current time obtained in the PHP script is Beijing time. Modify the PHP configuration file as follows:
//Set the default time zone in the configuration file to East 8 District (Beijing time)

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

This chapter deals with the information about the authentication process available in CakePHP.
