Goldenweb.it homepage

ANNUNCI | DIRECTORY | FONTS | ICONE | NEWSGROUPS | TOP25 | WALLPAPERS

English version  

Optionforex
Apri con minimo di € 200,00 conto di trading ed inizia ad operare. Guadagni in meno di 1 ora 70% in caso di previsione uguale al tuo acquisto. In casi di mancata previsione perdi 85%. Vietato ai minori 18 anni.
Casino Online
Per giocare al casinò in linea abbiamo testato e sottoposto ad auditing centinaia di casinò virtuali. Solo le migliori sale di casinò in linea sono presentate su tutti i siti che i nostri esperti hanno sottoposto ad auditing per voi. Le nostre selezioni

GoldenWeb.it Directory "Premium" Links - Il tuo link qui...



constant

(PHP 4 >= 4.0.4, PHP 5)

constant -- Returns the value of a constant

Description

mixed constant ( string name)

constant() will return the value of the constant indicated by name.

constant() is useful if you need to retrieve the value of a constant, but do not know its name. i.e. It is stored in a variable or returned by a function.

Esempio 1. constant() example

<?php

define
("MAXSIZE", 100);

echo
MAXSIZE;
echo
constant("MAXSIZE"); // same thing as the previous line

?>

See also define(), defined() and the section on Constants.