dedecms重新定义cn_substr函数截取字数更准确
来源: 阅读:839 次 日期:2014-09-24 14:48:26
温馨提示: 小编为您整理了“dedecms重新定义cn_substr函数截取字数更准确”,方便广大网友查阅!

方法说明:

一、找到\include\helpers\string.helper.php把原来约33到102行(也就是定义cn_substr()函数的那段代码)替换掉,你要是怕不行,可以先把这个文件备份下,亲;

代码如下:

/**

* 中英文截取字符串,汉字安2个字节

*

* @access public

* @param string $str 需要截取的字符串

* @param int $cutLen 截取的长度

* @param bool $cutSlashes 是否去掉\

* @param bool $addSlashes 是加\

* @param string $oDot 截取后加的字符串,如经常用的三个点

* @param bool $hasHtml 是否有html

* @return string

*/

if ( ! function_exists(‘cn_substr’)){

function cn_substr($str, $cutLen, $oDot = null, $hasHtml = false, $cutSlashes = false, $addSlashes = false) {

global $cfg_soft_lang;

$str = trim ( $str );

if ($cutSlashes) $str = stripslashes ( $str );

if($hasHtml){

$str = preg_replace ( “/(\<[^\<]*\>|\r|\n|\s|\[.+?\])/is”, ‘ ‘, $str );

$str = htmlspecialchars ( $str );

}else{

$str = htmlspecialchars ( $str );

}

if ($cutLen && strlen ( $str ) > $cutLen) {

$nStr = ”;

if ($cfg_soft_lang == ‘utf-8′) {

$n = 0;

$tn = 0;

$noc = 0;

while ( $n < strlen ( $str ) ) {

$t = ord ( $str [$n] );

if ($t == 9 || $t == 10 || (32 <= $t && $t <= 126)) {

$tn = 1;

$n ++;

$noc ++;

} elseif (194 <= $t && $t <= 223) {

$tn = 2;

$n += 2;

$noc += 2;

} elseif (224 <= $t && $t < 239) {

$tn = 3;

$n += 3;

$noc += 2;

} elseif (240 <= $t && $t <= 247) {

$tn = 4;

$n += 4;

$noc += 2;

} elseif (248 <= $t && $t <= 251) {

$tn = 5;

$n += 5;

$noc += 2;

} elseif ($t == 252 || $t == 253) {

$tn = 6;

$n += 6;

$noc += 2;

} else {

$n ++;

}

if ($noc >= $cutLen)break;

}

if ($noc > $cutLen) $n -= $tn;

$nStr = substr ( $str, 0, $n );

} else {

for($i = 0; $i < $cutLen – 1; $i ++) {

if (ord ( $str [$i] ) > 127) {

$nStr .= $str [$i] . $str [$i + 1];

$i ++;

} else {

$nStr .= $str [$i];

}

}

}

$str = $nStr . $oDot;

}

if ($addSlashes) $str = addslashes ( $str );

$str = htmlspecialchars_decode ( $str );

return trim ( $str );

}

}

二、全站都使用cn_substr()函数,不管你程序是gbk还是utf8;

比如你要调用10个字(拼音汉字混杂):[field:title function='cn_substr(@me,20)']即可

更多信息请查看IT技术专栏

更多信息请查看 CMS教程
由于各方面情况的不断调整与变化, 提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
相关阅读 CMS教程
关于我们| 联系我们| 人才招聘| 网站声明| 网站帮助| 非正式的简要咨询| 简要咨询须知| 加入群交流| 手机站点| 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 云南省教育厅备案号:云教ICP备0901021 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:
咨询QQ:526150442(9:00—18:00) 版权所有:
云南网警报警专用图标
Baidu
map