我试图用它human_time_diff来显示多久前发布了一些东西。我得到这样的 ACF 字段:<?php $commenttime = get_sub_field( 'time', $postid ); ?>我的返回格式$commenttime是:Y-m-d H:i:s但是当我这样做时,没有显示时差:<?php echo human_time_diff( $commenttime, current_time('timestamp') ) . ' ago'; ?>我哪里错了?
1 回答
潇潇雨雨
TA贡献1833条经验 获得超4个赞
human_time_diff
:确定两个时间戳之间的差异
human_time_diff( $from, $to )
这个功能的使用
human_time_diff( get_the_time('U'), current_time('timestamp') ) . ' ago';
变量$commenttime
应该在时间戳中
strtotime($commenttime)
- 1 回答
- 0 关注
- 112 浏览
添加回答
举报
0/150
提交
取消