码迷,mamicode.com
首页 > 其他好文 > 详细

为Typecho增加文章阅读次数统计功能

时间:2019-12-12 01:06:05      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:cookie   exp   阅读   文章   archive   operator   this   index   lang   

文章次数统计是比较常用的功能,插件一搜一堆,下面说说把这个功能集成到主题里的方法:
把下面这段代码放到主题文件functions.php中


function Postviews($archive) {
    $db = Typecho_Db::get();
    $cid = $archive->cid;
    if (!array_key_exists(‘views‘, $db->fetchRow($db->select()->from(‘table.contents‘)))) {
        $db->query(‘ALTER TABLE `‘.$db->getPrefix().‘contents` ADD `views` INT(10) DEFAULT 0;‘);
    }
    $exist = $db->fetchRow($db->select(‘views‘)->from(‘table.contents‘)->where(‘cid = ?‘, $cid))[‘views‘];
    if ($archive->is(‘single‘)) {
        $cookie = Typecho_Cookie::get(‘contents_views‘);
        $cookie = $cookie ? explode(‘,‘, $cookie) : array();
        if (!in_array($cid, $cookie)) {
            $db->query($db->update(‘table.contents‘)
                ->rows(array(‘views‘ => (int)$exist+1))
                ->where(‘cid = ?‘, $cid));
            $exist = (int)$exist+1;
            array_push($cookie, $cid);
            $cookie = implode(‘,‘, $cookie);
            Typecho_Cookie::set(‘contents_views‘, $cookie);
        }
    }
    echo $exist == 0 ? ‘暂无阅读‘ : $exist.‘ 次阅读‘;
}

然后在首页index.php、文章页post.php或者其他需要输出阅读量的位置调用<?php Postviews($this); ?>即可(文章页必须要调用,否则无法统计)。

为Typecho增加文章阅读次数统计功能

标签:cookie   exp   阅读   文章   archive   operator   this   index   lang   

原文地址:https://www.cnblogs.com/vbyyuuy/p/12026503.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!