当前位置:Gxlcms > PHP教程 > php中文字符串截取(mb_substr)实例

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

时间:2021-07-01 10:21:17 帮助过:20人阅读

  1. $str='脚本学堂:http://bbs.it-home.org';
  2. echo mb_substr($str,0,4,'utf-8');//截取头5个字,假定此代码所在php文件的编码为utf-8
  3. ?>

输出:程序员之家

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

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

例2:

  1. $str='程序员之家:http://bbs.it-home.org';
  2. echo mb_strlen($str,'utf-8');//假定此代码所在php文件的编码为utf-8
  3. ?>

输出:24

人气教程排行