class My_class
{
    const STATUS_ERROR = 0;
    const STATUS_OK = 1;
    const DB_TABLE = TABLE_PREFIX . 'class_table';
}

The two status consts work fine and can be accessed within class methods as self::STATUS_ERROR and self::STATUS_OK just fine.

The issue is one of how to stop the following error being thrown when I try to define the third constant.

Parse error: syntax error, unexpected '.', expecting ',' or ';' in /home/sub/sub/directory/script.php

link|improve this question

I also came across the same issue. Well, looks as a limitation for me. Mentioned also here: bugs.php.net/bug.php?id=42355 – dma_k Apr 25 '10 at 0:43
feedback

2 Answers

up vote 6 down vote accepted

You don't. Constants are constant. You can't store anything in them.

You can use a static property though.

class My_Class {
  public static $DB_TABLE;
}
My_Class::$DB_TABLE = TABLE_PREFIX . 'class_table';

You can't do it within the declaration, so you might prefer a static method instead.

class My_Class {
  public static function dbTable() {
    return TABLE_PREFIX . 'class_table';
  }
}
link|improve this answer
feedback

a const must be defined with a constant value, they can't be the result of an expression

http://www.phpbuilder.com/manual/en/language.oop5.constants.php

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.