(PHP 7)
IntlChar::islower — Check if code point is a lowercase letter
Determines whether the specified code point has the general category "Ll" (lowercase letter).
Hinweis:
This misses some characters that are also lowercase but have a different general category value. In order to include those, use IntlChar::isULowercase().
codepoint
Der Integer-Wert des Codepoints (z.B. 0x2603
für U+2603 SNOWMAN) oder das Zeichen als UTF-8 String kodiert (z.B. "\u{2603}"
)
Returns TRUE
if
codepoint
is an Ll lowercase letter, FALSE
if not.
Beispiel #1 Testen unterschiedlicher Codepoints
<?php
var_dump(IntlChar::islower("A"));
var_dump(IntlChar::islower("a"));
var_dump(IntlChar::islower("Φ"));
var_dump(IntlChar::islower("φ"));
var_dump(IntlChar::islower("1"));
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
bool(false) bool(true) bool(false) bool(true) bool(false)
IntlChar::PROPERTY_LOWERCASE