Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have defined a constant in PHP e.g.

define('CONSTANT_NAME', 'constant_value');

I want to be able to change the value of this constant later on in the code.

Can this be done? If so, how?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
453 views
Welcome To Ask or Share your Answers For Others

1 Answer

From http://php.net/manual/en/function.define.php (emphasis is mine):

define — Defines a named constant

From http://www.php.net/manual/en/language.constants.php:

As the name suggests, that value cannot change during the execution of the script


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...