|
IntlChar::charFromNameFind Unicode character by name and return its code point value Beschreibung
public static int IntlChar::charFromName
( string
$characterName
[, int $nameChoice = IntlChar::UNICODE_CHAR_NAME
] )Finds a Unicode character by its name and returns its code point value.
The name is matched exactly and completely. If the name does not correspond to a code point, A Unicode 1.0 name is matched only if it differs from the modern name. Unicode names are all uppercase. Extended names are lowercase followed by an uppercase hexadecimal number, and within angle brackets. Parameter-Liste
Rückgabewerte
The Unicode value of the code point with the given name (as an integer), or BeispieleBeispiel #1 Testen unterschiedlicher Codepoints
<?phpDas oben gezeigte Beispiel erzeugt folgende Ausgabe: int(65) int(9731) int(9843) bool(false) Siehe auch
|