在路由中访问$ this不起作用“在不在对象上下文中时使用$ this”

时间:2016-11-01 15:14:27

标签: php slim slim-3

我正在尝试在路由功能中使用$this,当我这样做时,它会给我以下错误:

Using $this when not in object context

以下是代码:

function api($request, $response) {
    $response->write('REST API v1');
    $this->logger->addInfo("Something interesting happened"); 
    return $response;
}

$app = new \Slim\App();

/** my routes here **/
$app->get('/', 'api');

$app->run();

我尝试根据this实现它。

为什么在函数内使用$this不起作用,如何在函数中使用$this

1 个答案:

答案 0 :(得分:2)

使用字符串声明函数时,无法在函数内部使用$this。使用匿名函数(控制器类也可以修复):

$app->get('/', function ($request, $response) {
    $response->write('REST API v1');
    $this->logger->addInfo("Something interesting happened"); 
    return $response;
});

请参阅:http://www.slimframework.com/docs/objects/router.html

  

如果使用Closure实例作为路由回调,则闭包的状态将绑定到Container实例。这意味着您可以通过$this关键字访问Closure内部的DI容器实例。