Query: ctype_alpha
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
CTYPE_ALPHA(3) 1 CTYPE_ALPHA(3) ctype_alpha - Check for alphabetic character(s)SYNOPSISbool ctype_alpha (string $text)DESCRIPTIONChecks 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(3) 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.PARAMETERSo $text - The tested string.RETURN VALUESReturns TRUE if every character in $text is a letter from the current locale, FALSE otherwise.EXAMPLESExample #1 A ctype_alpha(3) 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. "; } else { echo "The string $testcase does not consist of all letters. "; } } ?> The above example will output: The string KjgWZC consists of all letters. The string arf12 does not consist of all letters.NOTESNote If an integer between -128 and 255 inclusive is provided, it is interpreted as the ASCII value of a single character (negative val- ues have 256 added in order to allow characters in the Extended ASCII range). Any other integer is interpreted as a string contain- ing the decimal digits of the integer.SEE ALSOctype_upper(3), ctype_lower(3), setlocale(3). PHP Documentation Group CTYPE_ALPHA(3)
Related Man Pages |
---|
ctype_alpha(3) - php |
ctype_upper(3) - php |
ctype_cntrl(3) - php |
ctype_lower(3) - php |
mb_strtoupper(3) - php |
Similar Topics in the Unix Linux Community |
---|
Split text file by pages |
i get stuck with this shell script code |
Replace lower case letters with N |
Alphabetical help. |
Automate multiple commands |