Two types of time analysis in PHP_PHP tutorial
So there are two forms of saving to the database (there are really more than two, my application only has two). I save the timestamp type as a string, which is more convenient.
Normal date type is saved as DATE type.
You should pay attention to these two PHP times. I usually use two, so in the table I built a few days ago, I saved the time type For DATE, I have been saving it with timestamp, but the data cannot be written into the table. After debugging for a long time, I found out the error. The type does not match and it is not written to the library.
Like the time above Stamping is more convenient, but when displaying it, don’t show this string of 1228348800 to the customer, GOD NOWS!
So the conversion of these two is used. First, let’s talk about how to get the current timestamp. ,$date1=time(); In this way, the current timestamp is obtained. To convert it back to the format of 2008-12-4, the date() function is used. The date() function is commonly used in PHP, such as To get the current date, you can use $date2=date('Y-m-d');. Regarding the meaning of the parameters inside, if you don’t understand, just check the php manual.
Okay, back to the topic, convert 1228348800 to The format code of 2008-12-4 is as follows:
$date3=date('Y-m-d H:i:s',"1228348800");
This is OK. If you still want to get the hour, Minutes and seconds, just change 'Y-m-d', but please note that the PHP time seems to have an error of 8 hours. Add it and it will be OK.
The timestamp is converted to the normal date. , on the contrary, to convert the normal date format into a timestamp, please see the following code:
$year=((int)substr("2008-12-04",0,4));// Get the year
$month=((int)substr("2008-12-04",5,2));//Get the month
$day=((int)substr( "2008-12-04",8,2));//What number was obtained
echo mktime(0,0,0,$month,$day,$year);
In this way, the normal date can be converted into a timestamp. The same is true if there are minutes and seconds here.
Note: The timestamp of PHP5.1 and above will differ from the actual time by 8 hours. The specific solution for PHP time is as follows
1. The simplest way is not to use php5.1 or above - obviously this is not an advisable method! ! !
2. Modify php.ini. Open php.ini and search for date.timezone. Remove the semicolon = in front and add Asia/Shanghai at the end. Just restart the apache server. The disadvantage is that if the program is placed on someone else's server, php.ini cannot be modified, so there is nothing you can do.
3. Add a time initialization statement in the program, namely: "date_default_timezone_set("Asia/Shanghai"); "This can be set arbitrarily by the programmer, which I recommend.
Time zone identifier, the PHP time values available in mainland China are: PRC, Asia/Chongqing, Asia/Shanghai, Asia/Urumqi (in order, China, Chongqing, Shanghai, Urumqi), Etc/GMT-8, Asia/Harbin
Available in Hong Kong and Taiwan: Asia/Macao, Asia/Hong_Kong, Asia/Taipei (in order, Macau, Hong Kong, Taipei)
And Singapore: Asia/Singapore
Australia: Australia/Sydney

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

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

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.

In this chapter, we are going to learn the following topics related to routing ?

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.

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
