在Slim Framework中使用JSON流进行响应

时间:2018-08-29 21:58:53

标签: php json stream slim

我需要以某种方式从我的API做出响应->withHeader('Transfer-Encoding', 'chunked'),但是据我所知,它需要响应主体中的流。如何将我的键值数组转换为JSON流并对其进行响应?

现在,我的代码如下:

        return $response->withHeader('Connection', 'close')
                ->withHeader('Pragma', 'no-cache')
                ->withHeader('Content-type', 'application/json;charset=utf8')
                ->withHeader('Access-Control-Allow-Origin', '*')
                ->withoutHeader('Content-Length')
                ->withHeader('Transfer-Encoding', 'chunked')
                ->withStatus(200)
                ->withJson($resp);

其中$resp是我的数组。但这是行不通的...

0 个答案:

没有答案