Home >php教程 >php手册 >php 中文字符串截取函数

php 中文字符串截取函数

WBOY
WBOYOriginal
2016-06-06 19:45:151497browse

下面这二款函数是二款双字节字符串截取函数,那就是针对中文字符串截取了,好了第一款汉字中文截取函数是越级简洁了,后一款复杂但考虑更多一些。 ? //php教程 中文字符串截取函数 /* 下面这二款函数是二款双字节字符串截取函数,那就是针对中文字符串截取了

下面这二款函数是二款双字节字符串截取函数,那就是针对中文字符串截取了,好了第一款汉字中文截取函数是越级简洁了,后一款复杂但考虑更多一些。


//php教程 中文字符串截取函数
/*
下面这二款函数是二款双字节字符串截取函数,那就是针对中文字符串截取了,好了第一款汉字中文截取函数是越级简洁了,后一款复杂但考虑更多一些。
*/

function substr($str = ”, $offset = 0, $len = 0){
    $len || ($len = strlen($str));
    preg_match_all(‘/./us’, $str, $result);
    return implode(”, array_slice($result[0], $offset, $len));
}

//方法二

if (!function_exists(‘mb_substr’)) {
function mb_substr($str, $start, $len = ”, $encoding="utf-8"){
  $limit = strlen($str);

  for ($s = 0; $start > 0;–$start) {// found the real start
    if ($s >= $limit)
      break;

    if ($str[$s]       ++$s;
    else {
      ++$s; // skip length

      while ($str[$s] >= "x80" && $str[$s]         ++$s;
    }
  }

  if ($len == ”)
    return substr($str, $s);
  else
    for ($e = $s; $len > 0; –$len) {//found the real end
      if ($e >= $limit)
        break;

      if ($str[$e]         ++$e;
      else {
        ++$e;//skip length

        while ($str[$e] >= "x80" && $str[$e]           ++$e;
      }
    }

  return substr($str, $s, $e – $s);
}
}

?>

爱分享 ? php 中文字符串截取函数

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:nginx + php 的配置Next article:PHP小学(2)