Example of conversion between a PHP timestamp and a date _ PHP Tutorial-php Tutorial

Source: Internet
Author: User
An example of conversion between a PHP timestamp and a date. 1. in php, the time conversion function strtotime ("today") date (Y-m-dH: I, $ unixtime) 2. to obtain the unix timestamp of today in php, you can use $ todaytimestrtot 1. time conversion function in php

Strtotime ("today ")

Date ("Y-m-d H: I", $ unixtime)

2. obtain the timestamp of today's in php.

To obtain the unix timestamp at zero point, you can use $ todaytime = strtotime ("today "),

Then use date ("Y-m-d H: I", $ todaytime) to convert to date.

3. in php, the timestamp is converted to a date and different content is displayed according to the time, such as just, minutes ago, hours ago, today, yesterday, etc.

/* Time conversion function */

Function transTime ($ ustime ){

$ Ytime = date ("Y-m-d H: I", $ ustime );

$ Rtime = date ("n month j day H: I", $ ustime );

$ Htime = date ("H: I", $ ustime );

$ Time = time ()-$ ustime;

$ Todaytime = strtotime ("today ");

$ Time1 = time ()-$ todaytime;

If ($ time <60 ){

$ Str = 'gang ';

} Else if ($ time <60*60 ){

$ Min = floor ($ time/60 );

$ Str = $ min. 'minute ago ';

} Else if ($ time <$ time1 ){

$ Str = 'Today '. $ htime;

} Else {

$ Str = $ rtime;

}

Return $ str;

}

In this function, you can add more comparisons to make the displayed date more specific. for example, you can add more specific dates before the second or the day before yesterday.

4. fill 0 in php date and do not fill 0

Echo date ('Y-m-D'); display

Echo date ('Y-n-J'); display

Strtotime ("today") date ("Y-m-d H: I", $ unixtime) 2. in php, to obtain the unix timestamp of today's zero point, you can use $ todaytime = strtot...

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.