-
- preg_replace(”/([x80-xff])/”,””,$str);
- preg_replace(”/([u4e00-u9fa5])/”,””,$str);
コードをコピー
例、PHP中国語エンコード判定。
-
- //content-gbkに中国語が含まれているかどうかを判定する(php)
- function check_is_chinese($s){
- return preg_match('/[x80-xff]./', $ s) ;
- }
- //文字列の長さを取得する -gbk (php)
- function gb_strlen($str){
- $count = 0; $i=0; $i$s = substr($str, $i, 1);
- if (preg_match("/[x80-xff]/", $s))
- ++$count; return $ count;
- }
- //インターセプト文字列 string-gbk (php)
- function gb_substr($str, $len){
- for($i=0; $iif($count == $len) ブレーク;
- if(preg_match("/[x80-xff]/", substr($str, $i, 1))) ++$i; ++$count;
- }
- return substr($str, 0, $i);
- //統計文字列長-utf8 (php)
- function utf8_strlen($str) {
- $count = 0; $i = 0; $i <$str); $i++){
- $value = ord($str[$i]);
- $count++; $value >= 192 && $value <= 223) $i++;
- elseif($value >= 224 && $value <= 239) $i = $i + 2; 240 && $value <= 247) $i = $i + 3;
- else die('utf-8 互換文字列ではありません');
- $count++
- }
- /インターセプト string-utf8(php)
- function utf8_substr($str,$position,$length){
- $start_position = strlen($str)
- $end_position =
- $count; = 0;
- for($i = 0; $i if($count >= $position && $start_position > $i){
- $start_position = $i ;
- $start_byte = $count;
- if(($count-$start_byte)>=$length) {
- $end_position = $i;
- $value = ord($i ]);
- if($値 > 127){
- $count++;
- if($値 >= 192 && $値 <= 223) $i++($値 >= 224 && $値 < ;= 239) $i = $i + 2;
- elseif($value >= 240 && $value else die('utf-8 互換の文字列ではありません' );
- }
- $count++;
- }
- return(substr($str,$start_position,$end_position-$start_position));
- }
- //Korean-utf-8 (javascript) があるかどうかを判断する
- function checkkoreachar( str) {
- for(i=0; iif(((str.charcodeat(i) > 0x3130 && str.charcodeat(i) return true;
- }
- }
- return false
- }
- //中国語の文字があるかどうかを判断する -gbk (javascript )
- function check_chinese_char(s){
- return (s.length != s.replace(/[^x00-xff]/g,"**").length);
- }
-
-
- コードをコピー
-
-
-
-
-
-
-
-
-
-
-
|