不确定在php页面中显示Psr7 Guzzle Response的正确方法是什么。
现在,我正在做:
use GuzzleHttp\Psr7\BufferStream;
use GuzzleHttp\Psr7\Response;
class Main extends \pla\igg\Main
{
function __construct()
{
$stream = new BufferStream();
$stream->write("Hello I am a buffer");
$response = new Response();
$response = $response->withBody($stream);
$response = $response->withStatus('201');
$response = $response->withHeader("Content-type", "text/plain");
$response = $response->withAddedHeader("IGG", "0.4.0");
//Outputing the response
http_response_code($response->getStatusCode());
foreach ($response->getHeaders() as $strName => $arrValue)
{
foreach ($arrValue as $strValue)
{
header("{$strName}:{$strValue}");
}
}
echo $response->getBody()->getContents();
}
}
是否有更多的OOP方式来显示响应?
答案 0 :(得分:1)
Guzzle是一个用于在你的应用程序内部进行HTTP调用的库,它与最终用户通信无关。
如果您需要向最终用户发送特定标题,请使用http_response_code()
(您已使用的标题),header()
和echo
。或者查看您的框架的文档,如果您使用一个(Symfony,Slim,等等)。
答案 1 :(得分:1)
执行相同操作的更多OOP方法是创建一个在其构造函数中需要ResponseInterface
的Sender对象。该类负责设置标题,清除缓冲区并呈现响应:
use Psr\Http\Message\ResponseInterface;
class Sender
{
protected $response;
public function __construct(ResponseInterface $response)
{
$this->response = $response;
}
public function send(): void
{
$this->sendHeaders();
$this->sendContent();
$this->clearBuffers();
}
protected function sendHeaders(): void
{
$response = $this->response;
$headers = $response->getHeaders();
$version = $response->getProtocolVersion();
$status = $response->getStatusCode();
$reason = $response->getReasonPhrase();
$httpString = sprintf('HTTP/%s %s %s', $version, $status, $reason);
// custom headers
foreach ($headers as $key => $values) {
foreach ($values as $value) {
header($key.': '.$value, false);
}
}
// status
header($httpString, true, $status);
}
protected function sendContent()
{
echo (string) $this->response->getBody();
}
protected function clearBuffers()
{
if (function_exists('fastcgi_finish_request')) {
fastcgi_finish_request();
} elseif (PHP_SAPI !== 'cli') {
$this->closeOutputBuffers();
}
}
private function closeOutputBuffers()
{
if (ob_get_level()) {
ob_end_flush();
}
}
}
像这样使用:
$sender = new Sender($response);
$sender->send();
更好的是,您可以将Sender注入您的app对象并将其转换为类变量,因此您可以这样调用它:
function renderAllMyCoolStuff()
{
$this->sender->send();
}
我将把它作为读者练习来实现Response对象的getter和setter,以及一个接收一些内容字符串并在内部将其转换为Response对象的方法。