博客簿

Typecho 网站建站时间

时间:4年前   阅读:8425

Typecho 网站建站时间


有些朋友做博客模板喜欢把网站建站多长时间了写到网站上,下面这个代码就实现了这个功能。
以下代码,放置于functions.php中:

// 设置时区
date_default_timezone_set('Asia/Shanghai');
/**
 * 秒转时间,格式 年 月 日 时 分 秒
 * 
 * @author Roogle
 * @return html
 */
function getBuildTime(){
    // 在下面按格式输入本站创建的时间
    $site_create_time = strtotime('2010-09-10 00:00:00');
    $time = time() - $site_create_time;
    if(is_numeric($time)){
        $value = array(
            "years" => 0, "days" => 0, "hours" => 0,
            "minutes" => 0, "seconds" => 0,
        );
        if($time >= 31556926){
            $value["years"] = floor($time/31556926);
            $time = ($time%31556926);
        }
        if($time >= 86400){
            $value["days"] = floor($time/86400);
            $time = ($time%86400);
        }
        if($time >= 3600){
            $value["hours"] = floor($time/3600);
            $time = ($time%3600);
        }
        if($time >= 60){
            $value["minutes"] = floor($time/60);
            $time = ($time%60);
        }
        $value["seconds"] = floor($time);
        
        echo '<span class="btime">'.$value['years'].'年'.$value['days'].'天'.$value['hours'].'小时'.$value['minutes'].'分</span>';
    }else{
        echo '';
    }
}

在模板中调用:

<?php getBuildTime(); ?>

以上内容来自于: http://app.typecho.me/coder/buildtime.html [1]: http://app.typecho.me/coder/buildtime.html


上一篇:Typecho 热门文章等侧栏增加排列序号

下一篇:Typecho 热门标签调用及标签云调用

网友评论