ylsunyuan技术论坛

标题: 解决smarty truncate变量调节器乱码的问题 [打印本页]

作者: sun    时间: 2015-10-10 11:39
标题: 解决smarty truncate变量调节器乱码的问题
由于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);
}
放到插件目录下直接调用即可。







欢迎光临 ylsunyuan技术论坛 (http://bbs.ylsunyuan.com/) Powered by Discuz! X3.2