Como inicializar variáveis estáticas

Tenho este código:

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
);

Que me dá o seguinte erro:

Parse error: erro de sintaxe, inesperado '(', expecting ')' em /home/user/Sites/site/registration/inc/registration.class.inc na linha 19

Então, eu acho que estou fazendo algo errado ... mas como posso fazer isso se não for assim? Se eu mudar o material do mktime com seqüências regulares, ele funcionará. Então eu sei que posso fazer issotipo d Curtiu isso.

Alguém tem algumas dicas?

questionAnswers(9)

yourAnswerToTheQuestion