> 백엔드 개발 > PHP 튜토리얼 > 중국어로 왜곡된 문자를 가로채는 것을 방지하기 위해 추가 문자(중국어 및 영어)의 스크린샷을 찍습니다.

중국어로 왜곡된 문자를 가로채는 것을 방지하기 위해 추가 문자(중국어 및 영어)의 스크린샷을 찍습니다.

WBOY
풀어 주다: 2016-07-25 08:48:00
원래의
1092명이 탐색했습니다.
截图多余字符,中英文都可以,避免截取中文结尾 ?? 乱码!!
  1. function utf8_strlen($string = null) {
  2. // 将字符串分解为单元
  3. preg_match_all('/./us', $string, $match);
  4. // 返回单元个数
  5. return count($match[0]);
  6. }
  7. function sub_content($content, $length){
  8. $len = utf8_strlen($content);
  9. for($i = 0 ; $i < $len ; $i ){
  10. $arr[$i] = mb_substr($content,$i,1,'utf-8');
  11. }
  12. $get_length = 0;
  13. $result = '';
  14. foreach($arr as $code){
  15. $result .= $code;
  16. if(strlen($code) > 1){
  17. $get_length = 2;
  18. }else{
  19. $get_length = 1;
  20. }
  21. if($get_length >= $length){
  22. break;
  23. }
  24. }
  25. return $result;
  26. }
  27. echo sub_content($rows["Description"],18);
  28. /**
  29. * 字符串截取,支持中文和其他编码
  30. * @param string $str
  31. * @param int $start
  32. * @param int $length
  33. * @param string $charset
  34. * @param boolean $suffix
  35. * @return string
  36. */
  37. function w_substr($str, $start = 0, $length, $charset = "utf-8", $suffix = TRUE) {
  38. $suffix_str = $suffix ? '…' : '';
  39. if(function_exists('mb_substr')) {
  40. return mb_substr($str, $start, $length, $charset) . $suffix_str;
  41. } elseif(function_exists('iconv_substr')) {
  42. return iconv_substr($str, $start, $length, $charset) . $suffix_str;
  43. } else {
  44. $pattern = array();
  45. $pattern['utf-8'] = '/[x01-x7f]|[xc2-xdf][x80-xbf]|[xe0-xef][x80-xbf]{2}|[xf0-xff][x80-xbf]{3}/';
  46. $pattern['gb2312'] = '/[x01-x7f]|[xb0-xf7][xa0-xfe]/';
  47. $pattern['gbk'] = '/[x01-x7f]|[x81-xfe][x40-xfe]/';
  48. $pattern['big5'] = '/[x01-x7f]|[x81-xfe]([x40-x7e]|xa1-xfe])/';
  49. preg_match_all($pattern[$charset], $str, $matches);
  50. $slice = implode("", array_slice($matches[0], $start, $length));
  51. return $slice . $suffix_str;
  52. }
  53. }
复制代码


원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿