当前位置:Gxlcms > PHP教程 > 有效取得中文字符的长度和字符串

有效取得中文字符的长度和字符串

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

<无详细内容>
  1. mb_internal_encoding('UTF-8');
  2. $a = '我爱你 I love you';
  3. header('content-type:text/html; charset=UTF-8');
  4. echo mb_strlen($a);
  5. echo '
    ';
  6. echo mb_substr($a,1,2);
  7. ?>

人气教程排行