How to convert PHP + Mysql date and time (UNIX Timestamp and format date)

Source: Internet
Author: User
Tags timestamp to date

Programmers who have written PHP + MySQL know that there is a time difference. UNIX timestamps and formatting dates are two forms of time representation that we often deal with. The Unix timestamps are easy to store and process, but not intuitive, the date format is intuitive, but it is not as easy to process as the Unix timestamp, so sometimes it needs to be converted to each other. Below are several conversion methods for mutual conversion.

I. Completed in MySQL

This method is converted into a 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 in database queries and has limitations.

1. UNIX timestamp conversion to date function: FROM_UNIXTIME ()

General Format: select FROM_UNIXTIME (1156219870 );

2. convert a date to a UNIX timestamp using the function: UNIX_TIMESTAMP ()

General Format: Select UNIX_TIMESTAMP ('2017-11-04 12:23:00 ′);

Example: mysql queries the number of records on the current day:

$ SQL = "select * from message Where DATE_FORMAT (FROM_UNIXTIME (chattime), '% Y-% m-% D') = DATE_FORMAT (NOW (), '% Y-% m-% D') order by id desc ";

Of course, you can also choose to convert in PHP. The following describes the conversion in PHP.

2. Complete in PHP

This method completes the conversion in the PHP program. The advantage is that no matter whether the data obtained by queries in the database can be converted, the conversion range is unrestricted, and the disadvantage is that it takes up the parsing time of the PHP parser, relatively slow.

1. Convert UNIX timestamp to date using the function: date ()

General Format: date ('Y-m-d H: I: s', 1156219870 );

2. convert a date to a UNIX timestamp using the function strtotime ()

General Format: strtotime ('2017-03-24 08:15:42 ');

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.