内容简介:PHP使用日期时间扩展库Carbon人性化显示时间
Carbon 日期时间处理库可以很方便的处理时间,github地址为
https://github.com/briannesbitt/carbon
可以通过 Composer 很方便的来安装 Carbon
# composer require nesbot/carbon
使用方法也很简单
<?php require 'vendor/autoload.php'; use Carbon\Carbon; //显示中文 Carbon::setLocale('zh'); //获取昨天的时间戳 $ts = Carbon::yesterday()->timestamp; //人性化显示时间 echo Carbon::createFromTimestamp($ts)->diffForHumans();
上面的打印结果是 1天前
在 Laravel 框架中的使用方法
首先为了显示中文,在 app/Providers/AppServiceProvider.php
中添加 \Carbon\Carbon::setLocale('zh');
到 boot()
方法中,如下:
public function boot(){ \Carbon\Carbon::setLocale('zh'); }
然后就可以使用了,例如在ArticleController中的一个方法中人性化显示文章发表日期,假如发表日期为时间戳,在头部引用一下Carbon,添加如下代码
use Carbon\Carbon;
人性化发表时间
Carbon::createFromTimestamp($published_at)->diffForHumans();
Carbon除了人性化显示时间以外还有很多处理时间的功能,具体使用方法请参考官方文档。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- WWDC 2017:硬件来撑场,系统在细节体验上更人性化
- 解惑3:时间频度,算法时间复杂度
- 总是感觉时间不够用?程序员如何管理时间?
- TNB开创“数字时间”,让“时间就是金钱”成为可能
- javascript – 将日期时间选择器转换为UTC时间
- CentOS系统将UTC时间修改为CST时间方法
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Writing Apache Modules with Perl and C
Lincoln Stein、Doug MacEachern / O'Reilly Media, Inc. / 1999-03 / USD 39.95
Apache is the most popular Web server on the Internet because it is free, reliable, and extensible. The availability of the source code and the modular design of Apache makes it possible to extend Web......一起来看看 《Writing Apache Modules with Perl and C》 这本书的介绍吧!