作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想返回阿拉伯本地时间,如下所示
所以我在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');
但它返回的时间是这样的
有什么办法可以实现这一点吗?
最佳答案
使用 isoFormat 方法进行深入搜索后实现我想要的
$time = Carbon::parse('09:00:00')->isoFormat('h:mm a');
那么输出将是
关于php - 无法使用 Carbon formatLocalized 方法返回本地化的 AM/PM 时间格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61568844/
我是一名优秀的程序员,十分优秀!