PHP函数,返回多少分钟,多少秒,多少小时前

2021-03-06 09:29

阅读:497

标签:时间   rto   需要   几分钟   else   time   UNC   stat   public   

/**
 * 将时间转换为几秒前、几分钟前、几小时前、几天前
 * @param $in_time 需要转换的时间字符串
 * @return string
 */
public static function timeTran($in_time)
{
    $now_time = time();
    $in_time = strtotime($in_time);
    $dur = $now_time - $in_time;
    if ($dur 

PHP函数,返回多少分钟,多少秒,多少小时前

标签:时间   rto   需要   几分钟   else   time   UNC   stat   public   

原文地址:https://www.cnblogs.com/jiqing9006/p/12896575.html


评论


亲,登录后才可以留言!