(PHP 7, PHP 8)
IntlChar::isalpha — Check if code point is a letter character
$codepoint
): ?bool
Determines whether the specified code point is a letter character. true
for general categories "L" (letters).
codepoint
O valor int do ponto de código (por exemplo, 0x2603
para U+2603 SNOWMAN) ou o caractere codificado como uma string UTF-8 (por exemplo, "\u{2603}"
)
Returns true
if
codepoint
is a letter character, false
if not. Returns null
on failure.
Exemplo #1 Testando diferentes pontos de código
<?php
var_dump(IntlChar::isalpha("A"));
var_dump(IntlChar::isalpha("1"));
var_dump(IntlChar::isalpha("\u{2603}"));
?>
O exemplo acima produzirá:
bool(true) bool(false) bool(false)