php 我面临的问题是从创建日期前一天[关闭]

f87krz0w  于 2023-11-16  发布在  PHP
关注(0)|答案(1)|浏览(82)

**已关闭。**此问题需要debugging details。目前不接受回答。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答问题。
6天前关闭
Improve this question

@php
$replies = App\Models\ForumReplies::where("forum_id",$post_id)->where("reply_id",0)->latest()->get();
@endphp

Posted at {{$reply->created_at->diffForHumans()}}

为什么这个日期函数返回时间戳响应。
请帮我解决这个问题……

ct3nt3jp

ct3nt3jp1#

您可以使用多种方法来获取格式化的日期。

标准方法:

第一个月

本地化方法:

Posted at {{ $reply->created_at->isoFormat('MMM Do YY') }}

相关问题