Typecho文章字数计算
2017年02月18日 132 字 大概 1 分钟
炒鸡简单的,只需要在当前使用的主题的根目录的functions.php插入如下代码
当前仅仅统计文章中的中文字数。
function art_count ($cid){
$db=Typecho_Db::get ();
$rs=$db->fetchRow ($db->select ('table.contents.text')->from ('table.contents')->where ('table.contents.cid=?',$cid)->order ('table.contents.cid',Typecho_Db::SORT_ASC)->limit (1));
$text = preg_replace("/[^\x{4e00}-\x{9fa5}]/u", "", $rs['text']);
echo mb_strlen($text,'UTF-8');
}
在需要引用的地方插入
<?php art_count($this->cid); ?>