ホームページ > バックエンド開発 > 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 $arr[$i] = mb_substr($content,$i,1,'utf-8');
  10. }
  11. $get_length = 0;
  12. $result = '';
  13. foreach($arr as $code){
  14. $result .= $code;
  15. if(strlen($code) > 1){
  16. $get_length += 2;
  17. }else{
  18. $get_length += 1;
  19. }
  20. if($get_length >= $ length){
  21. Break;
  22. }
  23. }
  24. return $result;
  25. }
  26. echo sub_content($rows["Description"],18);
  27. /**
  28. * 文字列インターセプト、中国語およびその他のエンコーディングをサポートします
  29. * @param string $str
  30. * @param int $start
  31. * @param int $length
  32. * @param string $charset
  33. * @param boolean $suffix
  34. * @return string
  35. */
  36. function w_substr($str , $start = 0, $length, $charset = "utf-8", $suffix = TRUE) {
  37. $suffix_str = $suffix ? : '';
  38. if(function_exists('mb_substr')) {
  39. return mb_substr($str, $start, $length, $charset) . $suffix_str;
  40. } elseif(function_exists('iconv_substr')) {
  41. return iconv_substr($str, $start, $length, $charset) 。 ;
  42. } else {
  43. $pattern = array();
  44. $pattern['utf-8'] = '/[x01-x7f]|[xc2-xdf][x80-xbf]|[xe0-xef][x80] -xbf]{2}|[xf0-xff][x80-xbf]{3}/';
  45. $pattern['gb2312'] = '/[x01-x7f]|[xb0-xf7][xa0-xfe] /';
  46. $pattern['gbk'] = '/[x01-x7f]|[x81-xfe][x40-xfe]/';
  47. $pattern['big5'] = '/[x01-x7f]| [x81-xfe]([x40-x7e]|xa1-xfe])/';
  48. preg_match_all($pattern[$charset], $str, $matches);
  49. $slice = implode("", array_slice($matches) [0], $start, $length));
  50. $slice を返します。 $suffix_str;
  51. }
  52. }
コードをコピーします


ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート