Home >Backend Development >PHP Tutorial >A Chinese string interception function, great~~~! _PHP Tutorial

A Chinese string interception function, great~~~! _PHP Tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-13 17:12:42744browse

PHP code:------------------------------------------------ ----------------------------------
/**
***@Author:LAD
***@URL :http://www.cnpik .com/
***@E_mail:lianxiwoo@sohu.com
***@Use whatever you want, no charge:-)
* /
function cnSubStr($string,$sublen)
{
if($sublen>=strlen($string))
{
return $string;
}
$s="";
for($i=0;$i<$sublen;$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 Opposition is 456 committed on the broad embassy local 7890";
$sublen=strlen($string);
$len=20;
echo $string."

";
echo "The total length is: ".($sublen+1)."

";
echo "Number of interceptions: ".$len."

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

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/629308.htmlTechArticlePHP code:--------------------- -------------------------------------------------- --------- ?php /** ***@Author:LAD ***@URL :a href=http://www.cnpik.com/ target=_blankhttp://www.cnpi. ..
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