3

不确定在 php 页面中显示 Psr7 Guzzle 响应的正确方法是什么。

现在,我正在做:

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();

    }
}

是否有更多面向对象的方式来显示响应?

4

2 回答 2

2

做同样事情的一种更加面向对象的方法是创建一个ResponseInterface在其构造函数中需要 a 的 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 注入您的应用程序对象并将其转换为类变量,因此您可以这样称呼它:

function renderAllMyCoolStuff()
{
    $this->sender->send();
}

我将把它作为读者练习来实现 Response 对象的 getter 和 setter,以及接收一些内容字符串并将其在内部转换为 Response 对象的方法。

于 2018-03-07T23:45:28.027 回答
1

Guzzle 是一个用于在应用程序内部进行 HTTP 调用的库,它与最终用户通信无关。

如果您需要将特定标头发送给最终用户,只需使用http_response_code()(您已经在使用的)header()echo. 或者,如果您使用一个框架( SymfonySlim等),请查看您的框架的文档。

于 2017-04-11T09:23:09.933 回答