//String interception$a = "s@@Hello";var_dump(strlen_weibo($a,'utf-8'));結果 出力は 8 で、s が 1、全角 @ が 2、半角 @ が 1、漢字 2 文字が 4 と数えられます。ソースコードは以下の通りです: //文字列をインターセプトする関数コード function strlen_weibo($string, $charset='utf-8') { $n = $count = 0 ; $ length = strlen($string); if (strto lower($charset) == 'utf-8') { while ($n < $length) { $currentByte = ord($string[ $n] ); if ($currentByte == 9 || $currentByte == 10 || (32 <= $currentByte && $currentByte <= 126)) // bbs.it-home.org { $ n++; $count++; } elseif (194 <= $currentByte && $currentByte <= 223) { $n += 2; $count += 2; } elseif (224 <; = $currentByte && $currentByte <= 239) { $n += 3; $count += 2; } elseif (240 <= $currentByte && $currentByte <= 247) { $n += 4 ; $count += 2; } elseif (248 <= $currentByte && $currentByte <= 251) { $n += 5; $count += 2; } elseif ($ currentByte == 252 || $currentByte == 253) { $n += 6; $count += 2; } else { $n++; $count++; } if ($count > = $length ) { Break; } } return $count; } else { for ($i = 0; $i < $length; $i++) { if (ord($string) [$i ]) > 127) { $i++; $count++; } $count++; } return $count; }} コードをコピー