Search DaTutorials:  
HOME
Php Tutorials
Articles
Basics
Date and Time
File Manipulations
Forms
Functions
General
Interactivity
MySql
Navigation
News,Shoutboxes and Blogs
Language Structure and Data Types
Searching
Security
String Manipulation
User Information and Stats
Search For a Tutorial
Php Reference

ctype_alpha

(PHP 4 >= 4.0.4, PHP 5)

ctype_alpha -- Check for alphabetic character(s)

Description

bool ctype_alpha ( string text)

Returns TRUE if every character in text is a letter from the current locale, FALSE otherwise. 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.

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

This example will output :

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

See also ctype_upper(), ctype_lower(), and setlocale().



Copyright © 2001-2004 The PHP Group
All rights reserved.

     eBay | Myspace Images | Mobile Phones | Forex news | Personal Loans
Home     Link To Us     Ad With Us     Contact Us     Tell A Friend     Affiliates     Blog     MsOfficeHelp