为 Typecho 主题添加人性化评论时间 多少秒 多少天发帖代码
评论时间显示多少秒,多少天,多少时发帖代码。<?php
function timesince($older_date,$comment_date = false) {
$chunks = array(
array(86400 , '天'),
array(3600 , '小时'),
array(60 , '分'),
array(1 , '秒'),
);
$newer_date = time();
$sinc...
更新日期:2017-11-062685 人关注