Delicious Bookmark this on Delicious Share on Facebook SlashdotSlashdot It! Digg! Digg



PHP : Function Reference : Character Type Functions : ctype_alpha

ctype_alpha

Check for alphabetic character(s) (PHP 4 >= 4.0.4, PHP 5)
bool ctype_alpha ( string text )

Checks if all of the characters in the provided string, text, are alphabetic. In the standard C locale letters are just [A-Za-z] and ctype_alpha() is equivalent to (ctype_upper($text) || ctype_lower($text)) if $text is just a single character, but other languages have letters that are considered neither upper nor lower case.

Parameters

text

The tested string.

Return Values

Returns TRUE if every character in text is a letter from the current locale, FALSE otherwise.

Examples

Example 417. A ctype_alpha() example (using the default locale)

<?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";
   }
}
?>

The above example will output:

The string KjgWZC consists of all letters.
The string arf12 does not consist of all letters.


Code Examples / Notes » ctype_alpha

lxg

A little replacement function:
<?php
if ( !function_exists('ctype_alpha') ) {
function ctype_alpha($string) {
if ( !preg_match('|[^\pL]|', $string) )
/* alternative: */ // if ( !preg_match('|[^A-Za-z]|', $string) )
return true;
else
return false;
}
}
?>


Change Language


Follow Navioo On Twitter
ctype_alnum
ctype_alpha
ctype_cntrl
ctype_digit
ctype_graph
ctype_lower
ctype_print
ctype_punct
ctype_space
ctype_upper
ctype_xdigit
eXTReMe Tracker