PHP 截取汉语(UTF8版)
程序员文章站
2024-01-15 15:05:28
...
PHP 截取中文(UTF8版)
function SubTitle($String,$Length) {
?if (mb_strwidth($String, 'UTF8') ??return $String;
?}else{
??$I = 0;
??$len_word = 0;
??while ($len_word ???$StringTMP = substr($String,$I,1);
???if ( ord($StringTMP) >=224 ){
????$StringTMP = substr($String,$I,3);
????$I = $I + 3;
????$len_word = $len_word + 2;
???}elseif( ord($StringTMP) >=192 ){
????$StringTMP = substr($String,$I,2);
????$I = $I + 2;
????$len_word = $len_word + 2;
???}else{
????$I = $I + 1;
????$len_word = $len_word + 1;
???}
???$StringLast[] = $StringTMP;
??}
??/* raywang edit it for dirk for (es/index.php)*/
??if (is_array($StringLast) && !empty($StringLast)){
???$StringLast = implode("",$StringLast);
???$StringLast .= "...";
??}
??return $StringLast;
?}
}
相关文章
相关视频
推荐阅读
-
PHP 截取汉语(UTF8版)
-
比较discuz和ecshop的截取字符串函数php版_php技巧
-
php怎么截取中文字符串(utf8)
-
phpredis汉语言手册——《redis中文手册》 php版
-
PHP substr 截取字符串出现乱码问题解决方法[utf8与gb2312]
-
php 汉语言拼音 可以只首字母,也可以设utf8,gbk
-
PHP substr 截取字符串出现乱码问题解决方法[utf8与gb2312]_PHP
-
php 汉语言拼音 可以只首字母,也可以设utf8,gbk
-
PHP汉字转拼音的类 UTF8版
-
真正根据utf8编码的规律来进行截取字符串的函数(utf8版sub_str )_PHP教程