Home  >  Article  >  Backend Development  >  php中的一个中文字符串截取函数_php技巧

php中的一个中文字符串截取函数_php技巧

WBOY
WBOYOriginal
2016-05-17 09:41:25770browse

PHP代码:
--------------------------------------------------------------------------------

/**
***@Author:LAD
***@URL   :http://www.cnpik.com/
***@E_mail:lianxiwoo@sohu.com 
***@随便用,不收钱 :-)
*/
function cnSubStr($string,$sublen)
{
    if($sublen>=strlen($string))
    {
        return $string;
    }
    $s="";
    for($i=0;$i    {
        if(ord($string{$i})>127) 
        {
            $s.=$string{$i}.$string{++$i};
            continue;
        }else{
            $s.=$string{$i};
            continue;
        } 
    }
    return $s;
}// End Function cnSubStr($string,$sublen)
/////////// Use like this :
echo "

__________________________

";
$string="242432反对感是456犯得上广泛大使馆地方7890";
$sublen=strlen($string);
$len=20;
echo $string."

";
echo "总长为:".($sublen+1)."

";
echo "截取数:".$len."

";
for($i=1;$i    if($i>$len){
        echo $i." → ".cnSubStr($string,$i)."…
";
        continue;
    }
    echo $i." → ".cnSubStr($string,$i)."
";
}
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn