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
Zakłady sportowe online - Mieszkania Lublin - kody do gier - hotel w gdańsku - Diety - GSM


Class Constants

Class Constants

It is possible to define constant values on a per-class basis remaining the same and unchangeable. Constants differ from normal variables in that you don't use the $ symbol to declare or use them. Like static members, constant values cannot be accessed from an instance of the object (using $object::constant).

The value must be a constant expression, not (for example) a variable, a class member, result of a mathematical operation or a function call.

Przykład 19-17. Defining and using a constant

<?php
class MyClass
{
    const
constant = 'constant value';

    function
showConstant() {
        echo  
self::constant . "\n";
    }
}

echo
MyClass::constant . "\n";

$class = new MyClass();
$class->showConstant();
// echo $class::constant;  is not allowed
?>
galerie - opisy na gg - opisy do gg - Bardzo smutne opisy na gg - odzyskiwanie utraconych danych - gotseoweb - serwis komputerowy Szczecin - Super komputery tanie - darmowe fora - tylko dobre łożyska mają gwarancję - Jan Fela - pozycjonowanie stron bielsko-biała - pozycjonowanie stron bielsko - ourage - odzyskiwanie danych Szczecin

G:7,M:0,Y:34