How to convert php mysql time

藏色散人
Release: 2023-03-12 21:40:01
Original
1986 people have browsed it

php Mysql time conversion method: 1. Use the "FROM_UNIXTIME()" method in mysql to convert UNIX timestamps to dates; 2. Use the "date()" function in php to convert UNIX timestamps is the date.

How to convert php mysql time

The operating environment of this article: Windows 7 system, PHP version 7.1, Dell G3 computer.

php How to convert mysql time?

How to convert PHP Mysql date and time

Programmers who have written PHP MySQL all know that there is a time difference. UNIX timestamps and formatted dates are what we often deal with. There are two time representations. Unix timestamp is convenient to store and process, but not intuitive. Formatted date is intuitive, but it is not as easy to process as Unix timestamp. Therefore, sometimes it is necessary to convert each other. Here are several ways to convert each other. Conversion method.

1. Complete in MySQL

This method is converted in the MySQL query statement. The advantage is that it does not take up the parsing time of the PHP parser and is fast. The disadvantage is that it can only be used for database queries. , there are limitations.

1. Use the function to convert UNIX timestamp to date: FROM_UNIXTIME()

General form: select FROM_UNIXTIME(1156219870);

2. Use the function to convert date to UNIX timestamp Function: UNIX_TIMESTAMP()

General form: Select UNIX_TIMESTAMP('2006-11-04 12:23:00′);

Example: mysql query the number of records for the day:

$sql=”select * from message Where DATE_FORMAT(FROM_UNIXTIME(chattime),’%Y-%m-%d’) = DATE_FORMAT(NOW(),’%Y-%m-%d’) order by id desc”;
Copy after login

Of course, you can also choose to convert in PHP. Let’s talk about conversion in PHP.

2. Complete in PHP

This method completes the conversion in the PHP program. The advantage is that it can be converted regardless of whether it is the data obtained by querying in the database, and the conversion range is not limited. The disadvantage is that It takes up the parsing time of the PHP parser and is relatively slow.

1. Use the function to convert UNIX timestamp to date: date()

General form: date('Y-m-d H:i:s', 1156219870);

2 . Use the function to convert date to UNIX timestamp: strtotime()

General form: strtotime('2010-03-24 08:15:42');

Recommended study: "PHP video tutorial

The above is the detailed content of How to convert php mysql time. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!