How long has php been used to display the time?

Source: Internet
Author: User
This article mainly introduces how long php has been used to display the time, which can display the relative time. It is very useful. For more information, see

This article mainly introduces how long php has been used to display the time, which can display the relative time. It is very useful. For more information, see

This article describes how long php has used to display time. Share it with you for your reference. The details are as follows:

Here, we use a better readability method to show how long it has taken, for example, 10 seconds from now, 1 day from now, and so on.

Function time_is_older_than ($ t, $ check_time) {$ t = strtolower ($ t); $ time_type = substr (preg_replace ('/[^ a-z]/', '', $ t), 0, 1); $ val = intval (preg_replace ('/[^ 0-9]/', '', $ t); $ ts = 0; // (s) econds, (m) inutes, (d) ays, (y) ears if ($ time_type = 's') {$ ts = $ val ;} else if ($ time_type = 'M') {$ ts = $ val * 60;} else if ($ time_type = 'H ') {$ ts = $ val * 60*60;} else if ($ time_type = 'D') {$ ts = $ Val * 60*60*24;} else if ($ time_type = 'y') {$ ts = $ val * 60*60*24*365 ;} else {die ('unknown time format given! ');} If ($ check_time <(time ()-$ ts) {return true;} return false;} // example: // timestamp to test: // (cocould be from an database or something else) $ time = 1146722922; // long if check: if (time_is_older_than ('30m', $ time )) {print 'the given timestamp :'. date ('L dS \ of f y h: I: s A', $ time); print "-is older than 30 minutes
\ N ";} else {print 'the given timestamp :'. date ('L dS \ of f y h: I: s A', $ time); print "-is NOT older than 30 minutes
\ N ";}// short checks: if (time_is_older_than ('10s', $ time) {print" Is older than 10 seconds
\ N ";} if (time_is_older_than ('200m', $ time) {print" Is older than 200 minutes
\ N ";} if (time_is_older_than ('2h ', $ time) {print" Is older than 2 hours
\ N ";} if (time_is_older_than ('4d ', $ time) {print" Is older than 4 days
\ N ";} if (time_is_older_than ('1y', $ time) {print" Is older than one year
\ N ";}

I hope this article will help you with php programming.

,
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.