I have about 20 files containing 10-15 times this:
define('someConstantName','stringBetween10and200Chars');
those are all critical for the app, but each constants-file is parallel to an app page.
For example, index.php will require index_constants.php so on so forth.
The question is, should I make one file of all constant-definitions together, or require different files relatively to the pages they belong to.
I'm asking in terms of speed and efficiency.
Thanks.