“PHP obtiene valor constante” Código de respuesta

PHP obtiene valor constante

define("MAXSIZE", 100); //set the value

echo MAXSIZE; //to get the value
echo constant("MAXSIZE"); //to get the same value
Ivan The Terrible

Variable PHP constante

if (...) {
     const FOO = 'BAR';    // Invalid
 }
 // but
 if (...) {
     define('FOO', 'BAR'); // Valid
 }
Inexpensive Ibex

Respuestas similares a “PHP obtiene valor constante”

Preguntas similares a “PHP obtiene valor constante”

Más respuestas relacionadas con “PHP obtiene valor constante” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código