首页 > 后端开发 > php教程 > 用于utf8编码的字符串截取的函数

用于utf8编码的字符串截取的函数

WBOY
发布: 2016-07-25 09:07:12
原创
918 人浏览过
  1. /*

  2. * 用于utf8编码的字符串截取
  3. */
  4. function utf8_substr($str,$position,$length){
  5. $start_position = strlen($str);
  6. $start_byte = 0;
  7. $end_position = strlen($str);
  8. $count = 0;
  9. for($i = 0; $i if($count >= $position && $start_position > $i){
  10. $start_position = $i;
  11. $start_byte = $count;
  12. }
  13. if(($count-$start_byte)>=$length) {
  14. $end_position = $i;
  15. break;
  16. }
  17. $value = ord($str[$i]);
  18. if($value > 127){
  19. $count++;
  20. if($value >= 192 && $value elseif($value >= 224 && $value elseif($value >= 240 && $value else die('Not a UTF-8 compatible string');
  21. }
  22. $count++;
  23. }

  24. return(substr($str,$start_position,$end_position-$start_position));
  25. }
  26. ?>
复制代码


来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板