1. 程式人生 > >Laravel 中設定 Carbon 的 diffForHumans 方法返回中文

Laravel 中設定 Carbon 的 diffForHumans 方法返回中文

在寫 feed 流功能時,經常要用到 Carbon 的 diffForHumans 方法,以方便返回直觀的時間描述。

例如

Carbon::parse($date)->diffForHumans();
  • 10秒前
  • 5分鐘前

但是,預設 Carbon 並不會遵守 laravel config 中的 locale,需要特別指定。

編輯 app/Providers/AppServiceProvider.php

use Carbon\Carbon;

public function boot() {
    Carbon::setLocale('zh');
}

參考

https://laravel-china.org/articles/5577/the-diffforhumans-method-of-carbon