PHP Slim Framework v3 - 为响应设置全局内容类型

时间:2016-05-16 13:54:06

标签: php json rest content-type slim

有没有办法将内容类型设置为' application / json'对于SLIM 3中的全球响应?

我尝试了以下不起作用的事情:

$app->contentType('application/json');
$app->response->headers->set('Content-Type', 'application/json');

1 个答案:

答案 0 :(得分:8)

Middleware

$app->add(function ($request, $response, $next) {
    return $response->withHeader('Content-Type', 'application/json');
});
相关问题