php中文字符串截取(mb_substr)实例

发布时间:2020-07-02编辑:脚本学堂
php中文字符串截取(mb_substr)与获取中文字符串字数的例子,供大家学习参考。

php中文字符串截取(mb_substr)与获取中文字符串字数的例子,供大家学习参考。

1、中文截取:mb_substr()
mb_substr( $str, $start, $length, $encoding )

$str,需要截断的字符串
$start,截断开始处,起始处为0
$length,要截取的字数
$encoding,网页编码,如utf-8,GB2312,GBK

例1:
 

复制代码 代码示例:
<?php
$str='脚本学堂:http://www.jb200.com';
echo mb_substr($str,0,4,'utf-8');//截取头5个字,假定此代码所在php文件的编码为utf-8
?>
 

 输出:脚本学堂

2、获取中文长度:mb_strlen()
mb_strlen( $str, $encoding )

$str,要计算长度的字符串
$encoding,网页编码,如utf-8,GB2312,GBK

例2:
 

复制代码 代码示例:
<?php
$str='脚本学堂:http://www.jb200.com';
echo mb_strlen($str,'utf-8');//假定此代码所在php文件的编码为utf-8
?>
 

输出:24