今天在将一个 .net framework 项目迁移至 .net core 过程中在迁移到显示友好时间格式(比如“1分钟前”,“1小时前”)代码时,找了找看有没有对应的开源库,结果找到了 Humanizer ,顺手体验了一下,感觉不错,在这篇随笔中记录一下。 ...
分类:
Web程序 时间:
2019-06-08 00:30:23
阅读次数:
182
[toc] 12.23 真不知道怎么想的,记录刷题记录和流水账,把以前几篇粘到这。。。 12 21 T1 SD DP 我怎么连这么煞笔的普及组DP都不会做了,完了完了,降智严重. f[i]表示前i个人,到0层的最小时间. 然后枚举一次电梯多少个人就完了.用线段树维护一下,完了. T2 不懂 T3 不 ...
分类:
其他好文 时间:
2018-12-23 19:34:23
阅读次数:
176
$info['date'] = $item->created_at->diffForHumans();//友好时间显示 $info['date'] = $item->created_at->formatLocalized('%Y-%m-%d'); //数字时间显示 ...
分类:
其他好文 时间:
2017-12-26 19:09:59
阅读次数:
173
<td height="40" title="<{$rs.regtime|date='Y-m-d H:i:s',###}>"><{$rs.regtime|mdate}></td> /** * 格式化友好时间格式 * @param unknown $time * @return string */fu ...
分类:
其他好文 时间:
2017-09-05 13:30:56
阅读次数:
146
public static function formatTime($date) { $str = ''; /* if(is_string($date)) { $timer = strtotime($date); } else{ $timer=$date; ...
分类:
其他好文 时间:
2015-10-31 18:19:59
阅读次数:
151
需求:
swift开发,想显示如「24秒前」、「15分钟前」、「今天 14:15」这样的时间称呼。
直接上代码
func friendlyTime(dateTime: String) -> String {
let dateFormatter = NSDateFormatter()
dateFormatter.locale = NSLocale(locale...
分类:
编程语言 时间:
2014-12-25 23:40:49
阅读次数:
217
/// /// 获取时间差 /// /// 要减的时间 /// 大的时间 /// public static string GetDateDiff(DateTime dtOld,DateTime...
分类:
其他好文 时间:
2014-09-16 12:22:40
阅读次数:
269