格式化友好时间格式

<td height="40" title="<{$rs.regtime|date=‘Y-m-d H:i:s‘,###}>"><{$rs.regtime|mdate}></td>

/**
 * 格式化友好时间格式
 * @param unknown $time
 * @return string
 */
function mdate($time = NULL) {
    $text = ‘‘;
    $time = $time === NULL || $time > time() ? time() : intval($time);
    $t = time() - $time; //时间差 (秒)
    if ($t == 0)
        $text = ‘刚刚‘;
        elseif ($t < 60)
        $text = $t . ‘秒前‘; // 一分钟内
        elseif ($t < 60 * 60)
        $text = floor($t / 60) . ‘分钟前‘; //一小时内
        elseif ($t < 60 * 60 * 24)
        $text = floor($t / (60 * 60)) . ‘小时前‘; // 一天内
        elseif ($t < 60 * 60 * 24 * 3)
        $text = floor($time/(60*60*24)) ==1 ?‘昨天 ‘ . date(‘H:i‘, $t) : ‘前天 ‘ . date(‘H:i‘, $time) ; //昨天和前天
        elseif ($t < 60 * 60 * 24 * 30)
        $text = date(‘m月d日 H:i‘, $time); //一个月内
        elseif ($t < 60 * 60 * 24 * 365)
        $text = date(‘m月d日‘, $time); //一年内
        else
            $text = date(‘Y年m月d日‘, $time); //一年以前
            return $text;
}

时间: 2024-10-31 19:06:21

格式化友好时间格式的相关文章

.NET Core 中使用 Humanizer 显示友好时间格式

今天在将一个 .net framework 项目迁移至 .net core 的过程中,在迁移到显示友好时间格式(比如“1分钟前”,“1小时前”)的代码时,找了找看有没有对应的开源库,结果找到了 Humanizer ,顺手体验了一下,感觉不错,在这篇随笔中记录一下. 由于显示的是中文友好时间格式,需要安装 nuget 包 Humanizer.Core.zh-CN . <ItemGroup> <PackageReference Include="Humanizer.Core.zh-

Thymeleaf模板格式化LocalDatetime时间格式

添加maven依赖 <dependency> <groupId>org.thymeleaf.extras</groupId> <artifactId>thymeleaf-extras-java8time</artifactId> <version>3.0.1.RELEASE</version> </dependency> 前端模板上的写法: <span th:text="${#dates.for

Java时间格式字符串与Date的相互转化

目录 将Date转化为格式化字符串 时间格式字符串转化为Date @ 将Date转化为格式化字符串 将Date转化为格式化字符串是利用SimpleDateFormat类继承自 java.text.DateFormat类的format方法实现的: public final String format(Date date):将日期格式化成日期/时间字符串. //获取当前时间 Date date = new Date(); //定义转化为字符串的日期格式 SimpleDateFormat sdf =

【JS】【18】当前时间加减一天,和格式化时间格式

正文: 1,当前时间加减一天 function newDate(num) { var date = new Date();//获取当前时间 date.setDate(date.getDate() + num); //num正数为后一天,负数为前一天 return date : } 2,格式化时间格式 //方法 Date.prototype.Format = function (fmt) { var o = { "M+": this.getMonth() + 1, //月份 "

格式化时间格式LocalDateTime转String日期

1.格式化时间格式LocalDateTime转String日期 1 /** 2 * 格式化时间格式LocalDateTime转String日期,如下示范: 3 * [2017,7,22] ==> 2017-07-22 00:00:00 4 * @param value 数组:如,[2017, 7, 22] 5 * @returns {string} 字符串日期:2017-07-22 6 */ 7 HE.localDateTimeToString = function (value) { 8 if

JS 格林威治时间格式(GMT)格式化

Date.prototype.format = function (format) { var o = { "M+": this.getMonth() + 1, //month "d+": this.getDate(), //day "h+": this.getHours(), //hour "m+": this.getMinutes(), //minute "s+": this.getSeconds(),

IOS 时间格式 时间转换 大总结

//实例化一个NSDateFormatter对象 NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; //设定时间格式,这里可以设置成自己需要的格式 [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; //用[NSDate date]可以获取系统当前时间 NSString *currentDateStr = [dateFormatter stringFr

iOS开发之格式化日期时间

iOS开发之格式化日期时间 在开发iOS程序时,有时候需要将时间格式调整成自己希望的格式,这个时候我们可以用NSDateFormatter类来处理.例如: //实例化一个NSDateFormatter对象 NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; //设定时间格式,这里可以设置成自己需要的格式 [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

C#时间格式之GMT时间的格式

GMT:格林尼标准时间 北京时间=GMT时间+8小时 DataTime nowDate = DataTime.Now; nowDate.toString("r");    效果为:  Wed, 22 Jul 2009 16:24:33 GMT 參数解释: d ShortDatePattern D LongDatePattern f 完整日期和时间(长日期和短时间) F FullDateTimePattern(长日期和长时间) g 常规(短日期和短时间) G 常规(短日期和长时间) m.