PHP中文处理 中文字符串截取(mb_substr)和获取中文字符串字数,需要的朋友可以参考下。
一、中文截取:mb_substr()
mb_substr( $str, 来源gao.dai.ma.com搞@代*码网$start, $length, $encoding )
$str,需要截断的字符串
$start,截断开始处,起始处为0
$length,要截取的字数
$encoding,网页编码,如utf-8,GB2312,GBK
实例:
代码如下:
<?php
$str=’gaodaima搞代码网:https://www.gaodaima.com’;
echo mb_substr($str,0,4,’utf-8′);//截取头5个字,假定此代码所在php文件的编码为utf-8
?>
结果显示:gaodaima搞代码网
$str=’gaodaima搞代码网:https://www.gaodaima.com’;
echo mb_substr($str,0,4,’utf-8′);//截取头5个字,假定此代码所在php文件的编码为utf-8
?>
结果显示:gaodaima搞代码网
二、获取中文长度:mb_strlen()
mb_strlen( $str, $encoding )
$str,要计算长度的字符串
$encoding,网页编码,如utf-8,GB2312,GBK
实例:
代码如下:
<?php
$str=’gaodaima搞代码网:https://www.gaodaima.com’;
echo mb_strlen($str,’utf-8′);//假定此代码所在php文件的编码为utf-8
?>
结果显示:24
$str=’gaodaima搞代码网:https://www.gaodaima.com’;
echo mb_strlen($str,’utf-8′);//假定此代码所在php文件的编码为utf-8
?>
结果显示:24
以上就是PHP中文处理 中文字符串截取(mb_substr)和获取中文字符串字数的详细内容,更多请关注gaodaima搞代码网其它相关文章!