Carbon 是继承自 PHP DateTime 类 的子类,Carbon 提供了更加丰富、更加语义化的 API.
1.本地化 Carbon
在 AppServiceProvider 的 boot 方法中添加 Carbon::setLocale('zh').
public function boot()
{
// carbon 本地化设置
Carbon::setLocale('zh');
}
Carbon 的语言文件目录在 vendor/nesbot/carbon/src/Carbon/Lang
2.使用
2.1 Carbon 对象的时间字段
在 Laravel 中所有通过 ORM 查询出的时间字段都是一个 Carbon 对象.
Route::get('test', function () {
$user = \App\Models\User::find(1);
dd($user->created_at);
});
但是,通过 DB::select() 查询出的时间字段不是 Carbon 对象
Route::get('test', function () {
$user = DB::select("select * from users where id = 1");
dd($user[0]->created_at);
});
2.2 通过 Carbon API 格式化时间
Carbon 文档中有详细的 API 方法.
比如加减月份的方法 addMonths()
2.3 Carbon API 常用方法
1. diffForHumans() 距离现在的时间
2. 格式化时间 format()
format() 这个方法与 php 函数 date() 方法很类似.
3. toDateString() , toTimeString() , toDateTimeString()
参考