您的位置 首页 php

PHP格式化日期,显示“刚刚,几分钟前,几小时前,几天前,……”

PHP格式化日期,显示“刚刚,几分钟前,几小时前,几天前,……”

PHP

PHP格式化日期,显示“刚刚,几分钟前,几小时前,几天前,几个月前”

function format_date($time) {

$nowtime = time();

$difference = $nowtime – $time;

switch ($difference) {

case $difference <= ’60’ :

$ msg = ‘刚刚’;

break ;

case $difference > ’60’ && $difference <= ‘3600’ :

$msg = floor($difference / 60) . ‘分钟前’;

break;

case $difference > ‘3600’ && $difference <= ‘86400’ :

$msg = floor($difference / 3600) . ‘小时前’;

break;

case $difference > ‘86400’ && $difference <= ‘2592000’ :

$msg = floor($difference / 86400) . ‘天前’;

break;

case $difference > ‘2592000’ && $difference <= ‘7776000’:

$msg = floor($difference / 2592000) . ‘个月前’;

break;

case $difference > ‘7776000’:

$msg = ‘很久以前’;

break;

}

return $msg;

}

想了解更多,请关注订阅我们的头条号: IT点点滴

文章来源:智云一二三科技

文章标题:PHP格式化日期,显示“刚刚,几分钟前,几小时前,几天前,……”

文章地址:https://www.zhihuclub.com/78031.shtml

关于作者: 智云科技

热门文章

评论已关闭

2条评论

  1. naturally like your website but you have to test the spelling on several of your posts.
    Many of them are rife with spelling issues and I in finding it very troublesome to
    tell the reality on the other hand I’ll certainly come back again.

网站地图