织梦文章字数修改统计,打开/include/helpers/extent.helper.php文件,在最后面加入以下代码:
// 统计文章字数
function strlen_gbk($str) { $i = 0; $count = 0; $str = html2text($str); $len = strlen($str); while ($i < $len) { $cHR = ord($str[$i]); $count++; $i++; if ($i >= $len) { break; } if ($chr & 0x80) { $chr <<= 1; while ($chr & 0x80) { $i++; $chr <<= 1; } } } return $count; }
在需要调用位置使用以下代码即可:
{dede:field.body function='strlen_utf8(@me)'/}