(PHP 4 >= 4.0.4, PHP 5)
ctype_alpha — Controlla i caratteri alfabetici
$testo
)
Restituisce TRUE
se ogni carattere di testo
è
una lettera dell'ambiente corrente, FALSE
in caso contrario.
Nell'ambiente standard del C le lettere sono solo
[A-Za-z] e ctype_alpha() è
equivalente a (ctype_upper($text) || ctype_lower($text)),
se $text è di un singolo carattere,
ma altri linguaggi hanno lettere che non sono considerate nè maiuscole nè
minuscole.
Example #1 Esempio di uso di ctype_alpha() (utilizzando le impostazioni locali di default)
<?php
$strings = array('KjgWZC', 'arf12');
foreach ($strings as $testcase) {
if (ctype_alpha($testcase)) {
echo "The string $testcase consists of all letters.\n";
} else {
echo "The string $testcase does not consist of all letters.\n";
}
}
?>
This example will output :
The string KjgWZC consists of all letters. The string arf12 does not consists of all letters.
Vedere anche ctype_upper(), ctype_lower() e setlocale().