PHP obtient une valeur constante
define("MAXSIZE", 100); //set the value
echo MAXSIZE; //to get the value
echo constant("MAXSIZE"); //to get the same value
Ivan The Terrible