Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this code:

private static $dates = array(
  'start' => mktime( 0,  0,  0,  7, 30, 2009),  // Start date
  'end'   => mktime( 0,  0,  0,  8,  2, 2009),  // End date
  'close' => mktime(23, 59, 59,  7, 20, 2009),  // Date when registration closes
  'early' => mktime( 0,  0,  0,  3, 19, 2009),  // Date when early bird discount ends
);

Which gives me the following error:

Parse error: syntax error, unexpected '(', expecting ')' in /home/user/Sites/site/registration/inc/registration.class.inc on line 19

So, I guess I am doing something wrong... but how can I do this if not like that? If I change the mktime stuff with regular strings, it works. So I know that I can do it sort of like that..

Anyone have some pointers?

share|improve this question

5 Answers

up vote 95 down vote accepted

PHP can't parse non-trivial expressions in initializers.

I prefer to work around this by adding code right after definition of the class:

class Foo {
  static $bar;
}
Foo::$bar = array(…);

or

class Foo {
  private static $bar;
  static function init()
  {
    self::$bar = array(…);
  }
}
Foo::init();
share|improve this answer
3  
Smart work around. Didn't think of that =) Will most likely use that! – Svish Mar 29 '09 at 1:33
17  
I love PHP, but it's really odd sometimes. – Marco Demaio Nov 10 '11 at 21:46
3  
I know this is old, but I too use this method. However, I found that sometimes the Foo::init() is not called. I was never able to track down why, but just wanted to make all aware. – lucifurious Jul 15 '12 at 18:53

Instead of finding a way to get static variables working, I prefer to simply create a getter function. Also helpful if you need arrays belonging to a specific class, and a lot simpler to implement.

class MyClass
{
   public static function getTypeList()
   {
       return array(
           "type_a"=>"Type A",
           "type_b"=>"Type B",
           //... etc.
       );
   }
}

Wherever you need the list, simply call the getter method. For example:

if (array_key_exists($type, MyClass::getTypeList()) {
     // do something important...
}
share|improve this answer
3  
While this is an elegant solution, I wouldn't say it's ideal for performance reasons, primarily because of the amount of times the array could potentially be initialized - i.e., lots of heap allocation. Since php is written in C, I'd imagine the translation would resolve to a function returning a pointer to an Array per call... Just my two cents. – blissfreak Aug 22 '12 at 19:19
Furthermore function calls are expensive in PHP, so it's best to avoid them if they're not necessary. – Mark Rose Sep 20 '12 at 21:03
2  
"best to avoid them when not necessary" - not really. Avoid them if they (might) become bottlenecks. Otherwise it's premature optimization. – psycho brm Mar 13 at 15:49

That's too complex to set in the definition. You can set the definition to null though, and then in the constructor, check it, and if it has not been changed - set it:

private static $dates = null;
public function __construct()
{
    if (is_null(self::$dates)) {  // OR if (!is_array(self::$date))
         self::$dates = array( /* .... */);
    }
}
share|improve this answer
3  
but will the constructor be of any help in an abstract class that never is instantiated? – Svish Mar 28 '09 at 23:22
An abstract class can't be usefully used unless it's been completed and instantiated. The setup above doesn't have to be done specifically in a constructor, as long as it's called somewhere before the variable is going to be used. – Alister Bulman Mar 28 '09 at 23:55

If you have control over class loading, you can do static initializing from there.

Example:

class MyClass { public static function static_init() { } }

in your class loader, do the following:

include($path . $klass . PHP_EXT);
if(method_exists($klass, 'static_init')) { $klass::staticInit() }

A more heavy weight solution would be to use an interface with ReflectionClass:

interface StaticInit { public static function staticInit() { } }
class MyClass implements StaticInit { public static function staticInit() { } }

in your class loader, do the following:

$rc = new ReflectionClass($klass);
if(in_array('StaticInit', $rc->getInterfaceNames())) { $klass::staticInit() }
share|improve this answer
Interesting solution! – Svish Dec 17 '10 at 12:02
Okay, why the down vote; is my answer irrelevant or wrong? Please elaborate... – Emanuel Landeholm Nov 11 '11 at 3:04
This is more than somewhat similar to static constructors in c#, I've been using something quite similar for ages and it works great. – Kris Apr 6 at 23:20

You can't make function calls in this part of the code. If you make an init() type method that gets executed before any other code does then you will be able to populate the variable then.

share|improve this answer
init() type method? could you give an example? is that kind of like a static constructor in C#? – Svish Mar 28 '09 at 22:57
@Svish: No. It should be called just below class definition as a regular static method. – FractalizeR Nov 16 '10 at 18:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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