dedecms的cn_substr()和cn_substr_utf8()截取的字符串ms不准,平时也用习惯cn_substr(),也不愿用什么cn_substr_utf8()今天弄了下,现在还是比较准了。按照一个汉字2个字节调用就行了!
方法说明:
一、找到\include\helpers\string.helper.php把原来约33到102行(也就是定义cn_substr()函数的那段代码)替换掉,你要是怕不行,可以先把这个文件备份下,亲;
Copy to Clipboard
引用的内容:[www.dede58.com]
/**
* 中英文截取字符串,汉字安2个字节
*
* @access public
* @param string $str 需要截取的字符串
* @param int $cutLen 截取的长度
* @param bool $cutSlashes 是否去掉\
* @param bool $addSlashes 是加\
* @param string $oDot 截取后加的字符串,如经常用的三个点
* @param bool $hasHtml 是否有html
* @return string
*/
01 | if ( ! function_exists(‘cn_substr’)){ |
02 | function cn_substr($str, $cutLen, $oDot = null, $hasHtml = false , $cutSlashes = false , $addSlashes = false ) { |
05 | if ($cutSlashes) $str = stripslashes ( $str ); |
07 | $str = preg_replace ( “/(\<[^\<]*\>|\r|\n|\s|\[.+?\])/is”, ‘ ‘, $str ); |
08 | $str = htmlspecialchars ( $str ); |
10 | $str = htmlspecialchars ( $str ); |
12 | if ($cutLen && strlen ( $str ) > $cutLen) { |
14 | if ($cfg_soft_lang == ‘utf-8′) { |
18 | while ( $n < strlen ( $str ) ) { |
19 | $t = ord ( $str [$n] ); |
20 | if ($t == 9 || $t == 10 || (32 <= $t && $t <= 126)) { |
24 | } elseif (194 <= $t && $t <= 223) { |
28 | } elseif (224 <= $t && $t < 239) { |
32 | } elseif (240 <= $t && $t <= 247) { |
36 | } elseif (248 <= $t && $t <= 251) { |
40 | } elseif ($t == 252 || $t == 253) { |
47 | if ($noc >= $cutLen) break ; |
49 | if ($noc > $cutLen) $n -= $tn; |
50 | $nStr = substr ( $str, 0, $n ); |
52 | for ($i = 0; $i < $cutLen – 1; $i ++) { |
53 | if (ord ( $str [$i] ) > 127) { |
54 | $nStr .= $str [$i] . $str [$i + 1]; |
63 | if ($addSlashes) $str = addslashes ( $str ); |
64 | $str = htmlspecialchars_decode ( $str ); |
|
二、全站都使用cn_substr()函数,不管你程序是gbk还是utf8;
比如你要调用10个字(拼音汉字混杂):[field:title function='cn_substr(@me,20)']即可
郑重声明:
本站所有内容均由互联网收集整理、网友上传,并且以计算机技术研究交流为目的,仅供大家参考、学习,不存在任何商业目的与商业用途。
若您需要商业运营或用于其他商业活动,请您购买正版授权并合法使用。
我们不承担任何技术及版权问题,且不对任何资源负法律责任。
如无法下载,联系站长索要。
如有侵犯您的版权,请给我们来信:admin@cniao8.com,我们尽快处理。