I've got about 30 variables hard-coded into a php script and I need to remove them all and put them into their own places. I'm wondering, should define them as constants, globals, put them into a class, throw them in a separate file, or something else.

Also, I'm curious on how to define an array of constants.

So, what do you think the correct way is?

link|improve this question

feedback

5 Answers

up vote 0 down vote accepted

I'd do it like this, if what you're trying to do is "define an array of constants".

$constantsToDefine = array(
  'PORT' => 80,
  'NUMBER_OF_LEGS' => 10
);
foreach ($constantsToDefine as $key => $value) {
  define(strtoupper($key), $value);
}
link|improve this answer
feedback

constant is not a bad idea as it does not get overridden

or you can consider parse_ini_file

link|improve this answer
if you use parse_ini_file, do not forget to use a cache mecanism for the results (like Zend_Cache_Frontend_File). Parsing a file at each request is not no fastest way of setting constants. – regilero Jan 3 '11 at 20:41
feedback

It completely depends on what they are, what they represent, and what they mean. Your question is too vague.

You cannot define an array of constants, or a constant that is an array.

link|improve this answer
This should probably be a comment, not an answer... – ircmaxell Jan 3 '11 at 19:01
you can define array of configure variables. like $conf['variable_name'] , etc... – Marek Sebera Jan 3 '11 at 19:01
@ircmaxell: Possibly so, though I did answer part of the question in the array of constants. – Lightness Races in Orbit Jan 3 '11 at 19:02
You can loop over a key => value array map, defining a constant named key with value, however. – Tom R Jan 3 '11 at 19:03
@TomR: I don't understand. Where do constants come into play with arrays? The key will be a variable, not a constant. – Lightness Races in Orbit Jan 3 '11 at 19:03
feedback

It does depend on what these variable represent, where they will be used, and how they will be used. Are these variable all related?

As far as defining an array of constants... one way is just to create an array. This array will not really be "Constant", though as the values can be overwritten.

$constArr = array(
    "companyAddress" => "123 Fake St" , 
    "companyCity" => "Queens" , 
    "companyState" => "NY" , 
    "companyActive" => true
);

then you can access your "constants" like this...

echo $constArr["companyAddress"];
link|improve this answer
feedback

In several of the bigger applications we've written, we've put all of our "constant" variables into a single "include" file and then defined them using the define function. Then, we just include that file in all other pages.

For example, our include file would look something like:

define(CONSTANT_ONE, 1);
define(CONSTANT_TWO, TRUE);

Then, we would require_once('includes.php'); at the top of our other scripts.

Obviously the advantage to placing them all in a single file is centralized control.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.