PHP中文处理 中文字符串截取(mb_substr)和获取中文字符串字数

//首先需要开启php_mbstring扩展
header(“content-type:text/html;charset=utf-8”);
s t r = " 北 京 欢 迎 你 " ; e c h o m b s u b s t r ( str="北京欢迎你"; echo mb_substr( str="";echombsubstr(str,2,2,‘UTF-8’);
/*
mb_substr( $str, $start, $length, $encoding )
$str,需要截断的字符串
$start,截断开始处,起始处为0
$length,要截取的字数
$encoding,网页编码,如utf-8,GB2312,GBK
*/

你可能感兴趣的:(面试)