【发布时间】:2014-06-16 14:44:05
【问题描述】:
我正在关注this 教程并创建了一个非常简单的登录系统,但这里出现错误:
class AdminController extends BaseController {
public function __construct()
{
$this->beforeFilter(function()
{
if(Auth::guest()) //check if logged in
return Redirect::to('admin/login');
}, ['except' => ['getLogin','postLogin']]);
}
Symfony\Component\Debug\Exception\FatalErrorException 语法 错误,意外'['
这里:
}, ['except' => ['getLogin','postLogin']]);
【问题讨论】:
-
然后检查我的答案。方括号初始化器是在 php 5.4 中引入的。