I. Na początek
II.Instalacja i konfiguracja
III. Opis języka
IV. Bezpieczeństwo
V. Możliwości
VI. Opis funkcji
VII. Zend API
VIII. PHP API: Interfejs rozszerzeń
X. Dodatki

Manual PHP

Zapraszam do korzystania z zamieszczonego przeze mnie manuala php. Mam nadzieję, że ta jego kopia przyda się zarówno profesjonalnym programistą, jak i początkującym twórcą skryptów PHP.

Autorzy

Mehdi Achour,
Friedhelm Betz,
Antony Dovgal,
Nuno Lopes,
Philip Olson,
Georg Richter,
Damien Seguy,
Jakub Vrana,
I kilka innych

Redakcja:

Gabor Hojtsy,
Marcin Dąbrowski, Michał Grzechowiak, Leszek Krupiński, Adam Major, Paweł Paprota, Michał Pena, Sławomir Pucia, Jarek Tabor, Tomasz Wójtowicz,

ctype_upper

(PHP 4 >= 4.0.4, PHP 5)

ctype_upper -- Check for uppercase character(s)

Opis

bool ctype_upper ( string text )

Checks if all of the characters in the provided string, text, are uppercase characters.

Parametry

text

The tested string.

Zwracane wartości

Returns TRUE if every character in text is an uppercase letter in the current locale.

Przykłady

Przykład 1. A ctype_upper() example (using the default locale)

<?php
$strings
= array('AKLWC139', 'LMNSDO', 'akwSKWsm');
foreach (
$strings as $testcase) {
    if (
ctype_upper($testcase)) {
        echo
"The string $testcase consists of all uppercase letters.\n";
    } else {
        echo
"The string $testcase does not consist of all uppercase letters.\n";
    }
}
?>

Powyższy przykład wyświetli:

The string AKLWC139 does not consist of all uppercase letters.
The string LMNSDO consists of all uppercase letters.
The string akwSKWsm does not consist of all uppercase letters.


print 'Nadciśnienie w ciąży 1171501755' . "\n"; print 'Viagra 1171501543' . "\n"; print 'cuk 1171501699' . "\n"; print 'kursy angielskiego wrocław 1171501647' . "\n"; print 'peugeot partner 1171501713' . "\n";