gpt4 book ai didi

php - Laravel - diffForHumans 德语

转载 作者:可可西里 更新时间:2023-11-01 00:56:02 27 4
gpt4 key购买 nike

我正在尝试在 laravel 5.2 中使用德语的 Carbon 的 diffForHumans() 显示 created_at 属性。

created_at 在数据库中存储为:2017-03-29 17:31:52

模型

protected $dates = ['created_at', 'updated_at'];

public static function getCreatedAtAttribute($value)
{
Carbon::setLocale('de');
return Carbon::parse($value, 'Europe/Berlin')->diffForHumans();
}

dd($value); 返回 "2017-03-29 17:31:52"

观点

@foreach($posts as $post)
<small>{{ $post->getCreatedAtAttribute($post->created_at) }}</small>
@endforeach

错误

DateTime::__construct(): Failed to parse time string (vor 3 Tagen) at position 0 (v): The timezone could not be found in the database


如果有任何帮助,我将不胜感激!

最佳答案

对于德语翻译,我在 AppServiceProvider 中使用了这个定制:

class AppServiceProvider extends ServiceProvider
{
public function boot()
{
// Localization Carbon

\Carbon\Carbon::setLocale(config('app.locale'));
}
}

使用此设置,数据显示为:vor 3 Tagen 而不是 3 days ago

关于php - Laravel - diffForHumans 德语,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43168444/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com