我需要以某种方式从我的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
是我的数组。但这是行不通的...