Home Backend Development PHP Tutorial Two types of time analysis in PHP_PHP tutorial

Two types of time analysis in PHP_PHP tutorial

Jul 15, 2016 pm 01:28 PM
php application database hour time kind type parse

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


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446418.htmlTechArticleSo there are two forms of saving to the database (really more than two, my application only has two), timestamp type I saved it as a string, which is more convenient. The normal date type is saved as DA...
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

See all articles