我正在尝试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 ')'
为什么?我一直在声明这样的数组并且没有问题。
解决方案:首先在问题下方发表评论。