PHP Doku:: Get string length in grapheme units - function.grapheme-strlen.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzUnterstützung menschlicher Sprache und ZeichenkodierungInternationalization FunctionsGrapheme Funktionengrapheme_strlen

Ein Service von Reinhard Neidl - Webprogrammierung.

Grapheme Funktionen

<<grapheme_stristr

grapheme_strpos>>

grapheme_strlen

(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)

grapheme_strlenGet string length in grapheme units

Beschreibung

Procedural style

int grapheme_strlen ( string $input )

Get string length in grapheme units (not bytes or characters)

Parameter-Liste

input

The string being measured for length. It must be a valid UTF-8 string.

Rückgabewerte

The length of the string on success, and 0 if the string is empty.

Beispiele

Beispiel #1 grapheme_strlen() example

<?php

$char_a_ring_nfd 
"a\xCC\x8A";  // 'LATIN SMALL LETTER A WITH RING ABOVE' (U+00E5) normalization form "D"
$char_o_diaeresis_nfd "o\xCC\x88"// 'LATIN SMALL LETTER O WITH DIAERESIS' (U+00F6) normalization form "D"

print grapheme_strlen'abc' $char_a_ring_nfd $char_o_diaeresis_nfd $char_a_ring_nfd);

?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

6

Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)