PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ctype_cntrl> <ctype_alnum
Last updated: Fri, 27 Jun 2008

view this page in

ctype_alpha

(PHP 4 >= 4.0.4, PHP 5)

ctype_alpha — Controlla i caratteri alfabetici

Descrizione

bool ctype_alpha ( string $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().



add a note add a note User Contributed Notes
ctype_alpha
There are no user contributed notes for this page.

ctype_cntrl> <ctype_alnum
Last updated: Fri, 27 Jun 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites