Php implements relative time functions. Php implementation of the relative time function this article describes the php implementation of the relative time function. Share it with you for your reference. The specific implementation method is as follows :? 1234567891011121314 php implementation of relative time functions
This example describes how to evaluate relative time functions in php. Share it with you for your reference. The specific implementation method is as follows:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
Function relativeTime ($ time = false, $ limit = 86400, $ format = 'G: I A M js '){ If (empty ($ time) | (! Is_string ($ time) & amp; ! Is_numeric ($ time) $ time = time (); Elseif (is_string ($ time) $ time = strtotime ($ time ); $ Now = time (); $ Relative = ''; If ($ time = $ now) $ relative = 'Now '; Elseif ($ time> $ now) $ relative = 'in the future '; Else { $ Diff = $ now-$ time; If ($ diff >=$ limit) $ relative = date ($ format, $ time ); Elseif ($ diff <60 ){ $ Relative = 'less than one minute ago '; } Elseif ($ minutes = ceil ($ diff/60) <60 ){ $ Relative = $ minutes. 'Minute '. (int) $ minutes = 1 )? '': 'S '). 'ago '; } Else { $ Hours = ceil ($ diff/3600 ); $ Relative = 'about'. $ hours. 'hour '. (int) $ hours = 1 )? '': 'S '). 'ago '; } } Return $ relative; } |
I hope this article will help you with php programming.
Examples in this article describes how to evaluate relative time functions in php. Share it with you for your reference. The specific implementation method is as follows :? 1 2 3 4 5 6 7 8 9 10 11 12 13 14...