I am working on making my own custom CMS in PHP by hand and I have a few constants I have defined. Is there an easy way to modify the constants? I was thinking about using something like fopen() then changing it, but I have never used the filesystem functions.
|
|
|||||
|
|
Constants are constants and therefore cannot be changed. If you want to change the server constants such as allow_url_fopen, that is the host's reponsibility, ask them. If you want to change them in PHP, use variables UPDATE In case the truth is what Corbin says and you want to modify them in installation, you would want to do the following: 0. Change constant values to sg. like UPDATE 2 For your own CMS only, I suggest the following: store all constants in one file, so you will need to edit one file only. And perhaps than the previous solution could work for an easier editing, but IDK if it is worth the time. |
||||
|
|
|
No. They're constants, as in "constant - that which is permanent or invariable" (Wiktionary). Once they're defined, there is no way to change them. To quote The Fine Manual, section Constants:
|
|||||||
|
|
Constants means the value is constant, so you cannot change constants. If you will change the constants you need to use variables in state of constants:
|
|||
|
|
|
I think he means in the case of an installer script, where he want to store an input variable to a config file, to be used in his CMS, once the install is complete. In that case hes not changing the constant at runtime. hes probably got a file like this:
And he wants to create a script that populate these constants with data so it can be used in the CMS. |
||||
|
|