%PDF- %PDF-
Direktori : /var/www/html/kpk/api/vendor/zendframework/zend-diactoros/src/Response/ |
Current File : /var/www/html/kpk/api/vendor/zendframework/zend-diactoros/src/Response/SapiEmitter.php |
<?php /** * @see https://github.com/zendframework/zend-diactoros for the canonical source repository * @copyright Copyright (c) 2015-2018 Zend Technologies USA Inc. (http://www.zend.com) * @license https://github.com/zendframework/zend-diactoros/blob/master/LICENSE.md New BSD License */ namespace Zend\Diactoros\Response; use Psr\Http\Message\ResponseInterface; /** * @deprecated since 1.8.0. The package zendframework/zend-httphandlerrunner * now provides this functionality. */ class SapiEmitter implements EmitterInterface { use SapiEmitterTrait; /** * Emits a response for a PHP SAPI environment. * * Emits the status line and headers via the header() function, and the * body content via the output buffer. * * @param ResponseInterface $response */ public function emit(ResponseInterface $response) { $this->assertNoPreviousOutput(); $this->emitHeaders($response); $this->emitStatusLine($response); $this->emitBody($response); } /** * Emit the message body. * * @param ResponseInterface $response */ private function emitBody(ResponseInterface $response) { echo $response->getBody(); } }