gpt4 book ai didi

php - 如何更改 Carbon 的 diffForHumans 格式

转载 作者:行者123 更新时间:2023-12-03 18:41:11 25 4
gpt4 key购买 nike

我正在尝试在我的项目中实现评论部分,并希望显示评论发布的时间。

所以我做了:

 {{ $comment->created_at->diffForHumans() }}

输出是
  3 hours from now 

但我想要的输出是
3 hours ago 

我错过了什么吗?我在 Laravel 中这样做

最佳答案

您可以使用此 $comment->created_at->diffForHumans(null, true) 删除 ago,from now, etc 然后您可以自己附加前。所以你最终会得到:

$comment->created_at->diffForHumans(null, true).' ago'

(NB: you may need to check why this does not work by default)

Ref: https://carbon.nesbot.com/docs/#api-humandiff

关于php - 如何更改 Carbon 的 diffForHumans 格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51099331/

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