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

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

WBOY
WBOY原创
2016-07-25 09:07:12939浏览
  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. ?>
复制代码


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn