As we all know,
PHP display article publishing time code example:
- < ?php
- function format_date($dateStr) {
- $limit = time() - strtotime($dateStr);
- $r = "" ; 🎜>
60- ) { $r = 'just'
; - } elseif($limit >= 60 && $limit
- < 3600
) { $r = floor ($limit / 60) . 'minutes ago'; - } elseif($limit >= 3600 && $limit
- < 86400
) { $r = floor ($limit / 3600) . 'hours ago'; - } elseif($limit >= 86400 && $limit
- < 2592000
) { $r = floor ($limit / 86400) . 'days ago'; - } elseif($limit >= 2592000 && $limit
- < 31104000
) { $r = floor ($limit / 2592000) . 'months ago' ; - } else { $r =
- "A long time ago"
; - } return $r . "(" . $dateStr . ")"; }
echo "Posted on: " . format_date- (" 2009-11-25 23:40");
- ?>
-
The above code is an introduction to the specific implementation method of displaying the article publishing time in PHP.
-
http://www.bkjia.com/PHPjc/445990.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445990.htmlTechArticleAs we all know, PHP code example for displaying article publishing time: ?php functionformat_date($dateStr){ $ limit = time ()-strtotime($dateStr); $ r = ; if($limit 60 ){ $ r = 'just' ; }e...