up vote 1 down vote favorite
share [g+] share [fb]

I once heard it's good to have one class with all your application constants so that you have only one location with all your constants.

I Tried to do it this way:

class constants{
    define("EH_MAILER",1);
 }

and

 class constants{
      	 const EH_MAILER =1;
  }

But both ways it doesn't work. Any suggestions?

link|improve this question

73% accept rate
Where did you hear that? I think it's best to couple the constant with where it will be used. Also, what is EH in your example? I think that constant deserves a better name. – strager Mar 25 '09 at 20:19
If you're doing a more procedural style application, I could see an argument for an include full of define()s, but, if you're working with OO, putting all the constants in a single class makes no sense. They belong with the class that they're (most) relevant to. – Sean McSomething Mar 25 '09 at 20:42
feedback

2 Answers

up vote 14 down vote accepted

In the current version of PHP this is the way to do it:

class constants
{
   const EH_MAILER = 1;
}

$mailer = constants::EH_MAILER

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


Starting with PHP 5.3 there's better way to do it. Namespaces.

consts.php

<?php
namespace constants
const EH_MAILER = 1

...

other.php

<?php
include_once(consts.php)

$mailer = \constants\EH_MAILER
link|improve this answer
This is the way I would suggest doing it. – Mark Davidson Mar 25 '09 at 20:05
This is the solution i was looking for. Without the namespaces of course! Tnx – sanders Mar 25 '09 at 20:10
Wouldn't that be \constants\EH_MAILER, or at the very least constants\EH_MAILER? – Adam Backstrom Mar 25 '09 at 20:50
@Adam: You're right.There's been a lot of discussion about which will be namespace separator, in early versions it was :: (like in C++) – vartec Mar 25 '09 at 21:10
@Adam: wiki.php.net/rfc/backslashnamespaces – vartec Mar 25 '09 at 21:13
feedback

What php version are you using?

See php's page for class constants

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.