php中支持多种编码的中文字符串截取函数!

前端之家收集整理的这篇文章主要介绍了php中支持多种编码的中文字符串截取函数!前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

支持多种编码的中文字符串截取函数!
<div class="codetitle"><a style="CURSOR: pointer" data="14806" class="copybut" id="copybut14806" onclick="doCopy('code14806')"> 代码如下:

<div class="codebody" id="code14806">
/
@todo中文截取支持gb2312,gbk,utf-8,big5

@paramstring$str要截取的字串
@paramint$start截取起始位置
@paramint$length截取长度
@paramstring$charsetutf-8|gb2312|gbk|big5编码
@param$suffix是否加尾缀
*/ functioncsubstr($str,$start=0,$length,$charset="utf-8",$suffix=true)
{
if(function_exists("mb_substr"))
returnmb_substr($str,$start,$charset);
$re['utf-8']="/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xff][\x80-\xbf]{3}/";
$re['gb2312']="/[\x01-\x7f]|[\xb0-\xf7][\xa0-\xfe]/";
$re['gbk']="/[\x01-\x7f]|[\x81-\xfe][\x40-\xfe]/";
$re['big5']="/[\x01-\x7f]|\x81-\xfe/";
preg_match_all($re[$charset],$str,$match);
$slice=join("",array_slice($match[0],$length));
if($suffix)return$slice."…";
return$slice;
}

猜你在找的PHP相关文章