(PHP 7, PHP 8)
IntlChar::isULowercase — Verifica si un punto de código tiene la propiedad Unicode Lowercase
Verifica si un punto de código tiene la propiedad Unicode Lowercase.
   Esto es idéntico a IntlChar::hasBinaryProperty($codepoint, IntlChar::PROPERTY_LOWERCASE)
  
Nota:
Esto es diferente de IntlChar::islower() y devolverá
truepara más caracteres.
   Devuelve true si
   codepoint tiene la propiedad Unicode Lowercase, false en caso contrario. Devuelve null en caso de error.
  
Ejemplo #1 Testing different code points
<?php
var_dump(IntlChar::isULowercase("A"));
var_dump(IntlChar::isULowercase("a"));
var_dump(IntlChar::isULowercase("Φ"));
var_dump(IntlChar::isULowercase("φ"));
var_dump(IntlChar::isULowercase("1"));
?>El ejemplo anterior mostrará:
bool(false) bool(true) bool(false) bool(true) bool(false)
IntlChar::PROPERTY_LOWERCASE