我在 CakePHP - Windows 中开发了一个应用程序。
然后我把它放在 Ubuntu 中并进行必要的设置。一切正常,除了这条线:
$this-> set (
'projeto_id',
$this-> requestAction (
"/Projects/getprojectsofcategory",
array (
'setor_id' => $this->Registration-> read()['Registration']['setor_id']
)
)
);
给我以下错误:
致命错误错误:语法错误,意外'[',期待')'
我不明白为什么。如果我注释掉该行,则会出现以下错误,因为它属于同一类型。
有人可以解释一下为什么会出现这个错误吗?