How long has it taken to display the time in php? _ PHP Tutorial

Source: Internet
Author: User
How long has php been used to display the time. Php implementation How long has it taken to display the time? This article describes how php has used the past time to display the time. Share it with you for your reference. For example, how long has it taken to display the time in php?

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.

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

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.

Examples in this article describes how long php has used to display the time. Share it with you for your reference. For details, see...

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.