Laravel5.5+ Carbon 时间扩展的简单应用

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()

 

 

参考

https://carbon.nesbot.com/docs/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值