本文介绍了PHP使用日期时间处理器Carbon人性化显示时间,分享给大家,具体如下:
Carbon 日期时间处理库可以很方便的处理时间,github地址为https://github.com/briannesbitt/carbon
可以通过 Composer 很方便的来安装 Carbon
使用方法也很简单
PHP;">
timestamp;
//人性化显示时间
echo Carbon::createFromTimestamp($ts)->diffForHumans();
上面的打印结果是1天前
在 Laravel 框架中的使用方法
首先为了显示中文,在app/Providers/AppServiceProvider.PHP
中添加 \Carbon\Carbon::setLocale('zh');
到boot()
方法中,如下:
PHP;">
public function boot(){
\Carbon\Carbon::setLocale('zh');
}
然后就可以使用了,例如在ArticleController中的一个方法中人性化显示文章发表日期,假如发表日期为时间戳,在头部引用一下Carbon,添加如下代码
PHP;">
use Carbon\Carbon;
人性化发表时间
diffForHumans();
原文链接:https://www.f2er.com/php/16993.html