ylsunyuan技术论坛中心

 找回密码
 注册(请使用中文注册)
搜索
热搜: 活动 交友 discuz
查看: 945|回复: 0
打印 上一主题 下一主题

解决smarty truncate变量调节器乱码的问题

[复制链接]

124

主题

127

帖子

619

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
619
跳转到指定楼层
楼主
发表于 2015-10-10 11:39:20 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
由于smarty中内置的变量调节器truncate只能对英文字符进行处理,而对中文字符进行处理会出现乱码,解决方法如下
    自定义变量调节器,例如定义一个utf8的截字变量调节器,在plugins下新建一个modifier.truncateutf8.php文件,代码如下:
<?php
function smarty_modifier_truncateutf8($string, $sublen = 80, $etc = '...', $break_words = false, $middle = false)
{
$start=0;
$code="UTF-8";
       if($code == 'UTF-8')
   {
       //如果有中文则减去中文的个数
       $cncount=cncount($string);
       if($cncount>($sublen/2))
       {
            $sublen=ceil($sublen/2);
       }
       else
       {
            $sublen=$sublen-$cncount;
       }
       $pa = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|\xe0[\xa0-\xbf][\x80-\xbf]|[\xe1-\xef][\x80-\xbf][\x80-\xbf]|\xf0[\x90-\xbf][\x80-\xbf][\x80-\xbf]|[\xf1-\xf7][\x80-\xbf][\x80-\xbf][\x80-\xbf]/";
       preg_match_all($pa, $string, $t_string);
       if(count($t_string[0]) - $start > $sublen) return join('', array_slice($t_string[0], $start, $sublen))."...";
       return join('', array_slice($t_string[0], $start, $sublen));
   }
   else
   {
       $start = $start*2;
       $sublen = $sublen*2;
       $strlen = strlen($string);
       $tmpstr = '';
       for($i=0; $i<$strlen; $i++)
       {
           if($i>=$start && $i<($start+$sublen))
           {
               if(ord(substr($string, $i, 1))>129)
               {
                   $tmpstr.= substr($string, $i, 2);
               }
               else
               {
                   $tmpstr.= substr($string, $i, 1);
               }
           }
           if(ord(substr($string, $i, 1))>129) $i++;
       }
       if(strlen($tmpstr)<$strlen ) $tmpstr.= "...";
       return $tmpstr;
   }
}
function cncount($str)
{
$len=strlen($str);
    $cncount=0;

    for($i=0;$i<$len;$i++)
   {
      $temp_str=substr($str,$i,1);

      if(ord($temp_str) > 127)
      {
          $cncount++;
      }
    }
    return ceil($cncount/3);
}
放到插件目录下直接调用即可。


回复

使用道具 举报

本版积分规则

QQ|Archiver|手机版|小黑屋|ylsunyuan技术论坛 ( 桂ICP备14005218号-1

GMT+8, 2024-4-27 04:10 , Processed in 0.058374 second(s), 24 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表