具有运行时功能的公共/私有变量声明

时间:2013-09-21 14:24:25

标签: php

我正在尝试在类中设置public/private(无关紧要)变量(数组)

以这种方式(非常剥离)

class Test extends Whatever
{

    private $rules = array(
        'folder' => 'files/game/pictures/' . date('Ymd'), //this line causes error mentioned below
    );

    public function __construct() {//some code}

}

它给了我一个错误

Parse error: syntax error, unexpected '.', expecting ')'

为什么呢?我一直声明这样的数组而没有问题。


解决方案:首先在问题下面发表评论。

2 个答案:

答案 0 :(得分:0)

请尝试:

class Test extends Whatever {

    private $rules;

    public function __construct() {
        $this->rules = array(
            'folder' => 'files/game/pictures/' . date('Ymd'), //this line causes error mentioned below
        );
    }

}

答案 1 :(得分:0)

类声明的vars不使用数组(它是一个对象)。 试试这个:

class Test extends Whatever {

    private $rules = array();

    public function __construct() {
        $this->rules = array('folder' => 'files/game/pictures/' . date('Ymd'));
        // Other code...
    }
}