Note: mb_strwidth is NOT returning bytes. It's returning the width of monotype characters. (In some languages, some characters will take up 2 character widths if displayed in monotype.)
mb_strwidth
(PHP 4 >= 4.0.6, PHP 5)
mb_strwidth — Deuelve el ancho de un string
Descripción
int mb_strwidth
( string
$str
[, string $encoding
] )
Devuelve el ancho del string str.
Los caracteres multibyte normalmente son el doble de anchos que los caracteres de un único byte.
| Caracteres | Ancho |
|---|---|
| U+0000 - U+0019 | 0 |
| U+0020 - U+1FFF | 1 |
| U+2000 - U+FF60 | 2 |
| U+FF61 - U+FF9F | 1 |
| U+FFA0 - | 2 |
Parámetros
-
str -
El string a decodificar.
-
encoding -
El parámetro
encodinges la codificación de caracteres. Si es omitido, será usado el valor de la codificación de caracteres interna.
Valores devueltos
El ancho del string str.
Ver también
- mb_strimwidth() - Obtiene un string truncado con el ancho especificado
- mb_internal_encoding() - Establece/obtiene la codificación de caracteres interna
Anonymous ¶
5 years ago
larry1chan at gmail dot com ¶
5 years ago
to convert a multi-byte character into hex strings:
$b = "現,市民派利市的習慣亦有所改變";
printf("length of string: %d <br>", mb_strlen($b, 'UTF-8'));
for ($i=0; $i < mb_strlen($b, 'UTF-8'); $i++){
$ch = mb_substr($b, $i, 1, 'UTF-8');
$chlen = mb_strwidth($ch, 'UTF-8');
$hexs = '';
for ($j=0; $j < $chlen; $j++)
$hexs = $hexs . sprintf("%x", ord($ch[$j]));
printf ("width=%d => '%s' |hex=%s<br>", $chlen, $ch, $hexs );
}
