在toolbarComponent行182中Cakephp意外的语法错误

时间:2013-12-27 21:47:15

标签: php cakephp

浏览器错误: 解析错误:语法错误,第182行/Applications/MAMP/htdocs/cakePHP/cakeBlog/cakephp/plugins/DebugKit/Controller/Component/ToolbarComponent.php中的意外T_FUNCTION

Line 181-191
public function implementedEvents() {
    $before = function ($name) {
        return function () use ($name) {
            DebugTimer::start($name, __d('debug_kit', $name));
        };
    };
    $after = function ($name) {
        return function () use ($name) {
            DebugTimer::stop($name);
        };
    };

2 个答案:

答案 0 :(得分:2)

将PHP版本更改为5.3.0或更高版本......

因为DebugKit插件使用的是Anonymous Functions,5.2及更低版本不支持。

答案 1 :(得分:1)

你能检查你的PHP版本吗? 好像你需要5.3 +