gpt4 book ai didi

php - 无法使用 Carbon formatLocalized 方法返回本地化的 AM/PM 时间格式?

转载 作者:行者123 更新时间:2023-12-03 08:45:42 24 4
gpt4 key购买 nike

我想返回阿拉伯本地时间,如下所示

  • 9:00 õ

所以我在AppServiceProvider类的启动方法中设置了carbon区域设置

class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}

/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{

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

然后使用 Carbon 解析从数据库中获取的时间,并使用 formatLocalized 方法和 format 来显示小时和分钟像这样

$time = Carbon::parse('09:00:00')->formatLocalized('%I:%M %p');

但它返回的时间是这样的

  • 晚上 9:00

有什么办法可以实现这一点吗?

最佳答案

使用 isoFormat 方法进行深入搜索后实现我想要的

$time = Carbon::parse('09:00:00')->isoFormat('h:mm a');

那么输出将是

  • ** 9:00 õ**

关于php - 无法使用 Carbon formatLocalized 方法返回本地化的 AM/PM 时间格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61568844/

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