PHP

PHP jest obiektowym, skryptowym jezykiem programowania zaprojektowanym do tworzenia dynamicznych stron www.


Funkcje PHP

Oficjalna strona PHP

Dodatkowe aplikacje PHP

Dodatkowe modu³y PHP

Wortal PHP
Katalog Seo - poradnik do języka xhtml - Monitory LCD - Mieszkania Warszawa - kreydyty gotówkowe - Darmowe gry flash online


ctype_alpha

ctype_alpha

(PHP 4 >= 4.0.4, PHP 5)

ctype_alpha -- Check for alphabetic character(s)

Opis

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.

Parametry

text

The tested string.

Zwracane wartości

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

Przykłady

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

Powyższy przykład wyświetli:

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

Patrz także

ctype_upper()
ctype_lower()
setlocale()

Forum komputerowe Forum komputerowe Forum komputerowe - Firma Procreate oferuje skuteczne pozycjonowanie z gwarancja TOP10 - anteny - zdjęcia kobiet - zdjęcia dzieci - New York Limousine service company new york limo service NY limo services - statusy - statusy na gg - Najlepsze opisy gg smutne do Twojego komunikatora - Najlepsze pionowe opisy do Twojego komunikatora - serwis komputerowy Szczecin - odzyskiwanie danych Opole - zdjęcia różne - zdjęcia scenerii - ourage

G:3,M:0,Y:27