I'm learning OOP in PHP and I want to put value from variable to class constant. How can I do that?
This is my code (not working!):
class Dir {
const ROOT = $_SERVER['DOCUMENT_ROOT']."project/";
function __construct() {
}
}
Is there any solution, how to take value from variable, add string and put it to constant - in OOP?

PROJECT_ROOT, asROOTis a dangerous constant to define (too close to environment variables, if you ask me) – Elias Van Ootegem Jul 9 '12 at 14:23