将 PSR-7 响应转换为 Symfony 响应
Transform PSR-7 response to Symfony response
我已经编写了一个实现 PSR-7 接口的自己的 HTTP 库。我在第二个执行一些业务逻辑的库中使用这个库,并且可能 return PSR-7 标准中的响应或请求。
对于我的应用程序,我使用 Silex / Symfony 模块。在控制器中,我必须 return Symfony 响应。
如何将 PSR-7 响应转换为 Symfony 响应?我只找到反之亦然的桥梁,将 Symfony 响应转换为 PSR-7 响应。
这样试试:
use Symfony\Bridge\PsrHttpMessage\Factory\HttpFoundationFactory;
$httpFoundationFactory = new HttpFoundationFactory();
// convert a Response
// $psrResponse is an instance of Psr\Http\Message\ResponseInterface
$symfonyResponse = $httpFoundationFactory->createResponse($psrResponse);
希望对您有所帮助。
我已经编写了一个实现 PSR-7 接口的自己的 HTTP 库。我在第二个执行一些业务逻辑的库中使用这个库,并且可能 return PSR-7 标准中的响应或请求。
对于我的应用程序,我使用 Silex / Symfony 模块。在控制器中,我必须 return Symfony 响应。
如何将 PSR-7 响应转换为 Symfony 响应?我只找到反之亦然的桥梁,将 Symfony 响应转换为 PSR-7 响应。
这样试试:
use Symfony\Bridge\PsrHttpMessage\Factory\HttpFoundationFactory;
$httpFoundationFactory = new HttpFoundationFactory();
// convert a Response
// $psrResponse is an instance of Psr\Http\Message\ResponseInterface
$symfonyResponse = $httpFoundationFactory->createResponse($psrResponse);
希望对您有所帮助。