让CodeIgniter的ellipsize()支持中文截断的方法_PHP教程
程序员文章站
2022-06-07 18:30:21
...
CodeIgniter的Text Helper有一个ellipsize()方法,用来过滤HTML标签并且截断文字十分好用。但是它对中文支持的特别不好,在中文中使用就有乱码出现。
下面有网友将function ellipsize()进行了修改,使得它支持中文:
在CI 2.1.3版本中,修改ci_2.1.3\system\helpers\text_helper.php 文件
复制代码 代码如下:
function ellipsize($codepage = 'UTF-8',
$str, $max_length, $position = 1, $ellipsis = '…')
{
// Strip tags
$str = trim(strip_tags($str));
// Is the string long enough to ellipsize?
if (mb_strlen($str, $codepage) {
return $str;
}
$beg = mb_substr($str, 0, floor($max_length * $position), $codepage);
$position = ($position > 1) ? 1 : $position;
if ($position === 1)
{
$end = mb_substr($str, 0,
-($max_length - mb_strlen($beg, $codepage)), $codepage);
}
else
{
$end = mb_substr($str,
-($max_length - mb_strlen($beg, $codepage)), $max_length, $codepage);
}
return $beg.$ellipsis.$end;
}
$str, $max_length, $position = 1, $ellipsis = '…')
{
// Strip tags
$str = trim(strip_tags($str));
// Is the string long enough to ellipsize?
if (mb_strlen($str, $codepage) {
return $str;
}
$beg = mb_substr($str, 0, floor($max_length * $position), $codepage);
$position = ($position > 1) ? 1 : $position;
if ($position === 1)
{
$end = mb_substr($str, 0,
-($max_length - mb_strlen($beg, $codepage)), $codepage);
}
else
{
$end = mb_substr($str,
-($max_length - mb_strlen($beg, $codepage)), $max_length, $codepage);
}
return $beg.$ellipsis.$end;
}
这段代码主要将substr和strlen替换成了mb_substr和mb_strlen,这样就能很好的支持中文截断了。
推荐阅读
-
php使用iconv中文截断问题的解决方法_PHP教程
-
让PHP支持页面回退的两种方法_PHP教程
-
php5.4以下版本json不支持不转义内容中文的解决方法,_PHP教程
-
php5.4以下版本json不支持不转义内容中文的解决方法_PHP教程
-
让CodeIgniter的ellipsize()支持中文截断的方法_PHP教程
-
让Nginx支持ThinkPHP的URL重写和PATHINFO的方法分享_PHP教程
-
让CodeIgniter的ellipsize()支持中文截断的方法
-
Codeigniter购物车类不能添加中文的解决方法,codeigniter车类_PHP教程
-
PHP中file_exists函数不支持中文名的解决方法,_PHP教程
-
php5.4以下版本json不支持不转义内容中文的解决方法,_PHP教程